mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-04 06:57:56 +00:00
39 lines
1.5 KiB
XML
39 lines
1.5 KiB
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"
|
|
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:ios="clr-namespace:Xamarin.Forms.PlatformConfiguration.iOSSpecific;assembly=Xamarin.Forms.Core"
|
|
xmlns:qui="clr-namespace:qController.UI"
|
|
ios:Page.UseSafeArea="true"
|
|
mc:Ignorable="d"
|
|
x:Class="qController.WorkspacePage"
|
|
BackgroundColor="{DynamicResource PageBackgroundColor}">
|
|
<Grid RowSpacing="0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="200"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!--Ordering is based on the order last is on top seems pretty backwards to me-->
|
|
<ScrollView x:Name="cueListScrollView"
|
|
IsVisible="False"
|
|
Grid.Row="2">
|
|
<Grid x:Name="cueListsGrid"
|
|
RowSpacing="0"
|
|
ColumnSpacing="0"
|
|
BackgroundColor="#808080">
|
|
|
|
</Grid>
|
|
</ScrollView>
|
|
|
|
|
|
<qui:QSelectedCueFrame x:Name="selectedCueFrame"
|
|
IsVisible="False"
|
|
Grid.Row="1"/>
|
|
|
|
<qui:QNavBar x:Name="qNavBar"
|
|
Grid.Row="0"/>
|
|
</Grid>
|
|
</ContentPage> |