mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-16 04:43:41 +00:00
Start work towards manually added servers
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition Height="200"/>
|
||||
<RowDefinition Height="*"/>
|
||||
<RowDefinition Height="75"/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<!--Ordering is based on the order last is on top seems pretty backwards to me-->
|
||||
@@ -35,5 +36,60 @@
|
||||
|
||||
<qui:QNavBar x:Name="qNavBar"
|
||||
Grid.Row="0"/>
|
||||
|
||||
|
||||
|
||||
<Grid Grid.Row="3"
|
||||
RowSpacing="0"
|
||||
ColumnSpacing="0"
|
||||
BackgroundColor="#808080">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*"/>
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<Button Grid.Row="0"
|
||||
Grid.Column="0"
|
||||
Clicked="GoButtonClicked"
|
||||
BackgroundColor="SeaGreen"
|
||||
VerticalOptions="FillAndExpand"
|
||||
HorizontalOptions="FillAndExpand"
|
||||
TextColor="Black"
|
||||
Text="Go"/>
|
||||
|
||||
<Button Grid.Row="0"
|
||||
Grid.Column="1"
|
||||
Clicked="PauseButtonClicked"
|
||||
BackgroundColor="LightYellow"
|
||||
VerticalOptions="FillAndExpand"
|
||||
HorizontalOptions="FillAndExpand"
|
||||
TextColor="Black"
|
||||
Text="Pause"/>
|
||||
|
||||
<Button Grid.Row="0"
|
||||
Grid.Column="2"
|
||||
Clicked="ResumeButtonClicked"
|
||||
BackgroundColor="DarkSlateGray"
|
||||
VerticalOptions="FillAndExpand"
|
||||
HorizontalOptions="FillAndExpand"
|
||||
TextColor="Black"
|
||||
Text="Resume"/>
|
||||
|
||||
<Button Grid.Row="0"
|
||||
Grid.Column="3"
|
||||
Clicked="PanicButtonClicked"
|
||||
BackgroundColor="IndianRed"
|
||||
VerticalOptions="FillAndExpand"
|
||||
HorizontalOptions="FillAndExpand"
|
||||
TextColor="Black"
|
||||
Text="Panic"/>
|
||||
|
||||
</Grid>
|
||||
|
||||
</Grid>
|
||||
</ContentPage>
|
||||
Reference in New Issue
Block a user