Start work towards manually added servers

This commit is contained in:
2021-03-28 16:28:39 -05:00
parent ce64f24b4b
commit e08ba30d91
7 changed files with 202 additions and 33 deletions
@@ -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>