mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-05 15:33:47 +00:00
18 lines
816 B
XML
18 lines
816 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="qController.ControlPage">
|
|
<ContentPage.Content>
|
|
<StackLayout x:Name="sLayout">
|
|
<Grid x:Name="topBar" HorizontalOptions="FillAndExpand">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Image x:Name = "backButton" HorizontalOptions = "Start" Margin="20,10,20,10" Grid.Row="0" Grid.Column="0" />
|
|
</Grid>
|
|
</StackLayout>
|
|
</ContentPage.Content>
|
|
</ContentPage>
|