mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-03 22:47:54 +00:00
68 lines
2.4 KiB
XML
68 lines
2.4 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:qui="clr-namespace:qController.UI"
|
|
mc:Ignorable="d"
|
|
x:Class="qController.WorkspacePage"
|
|
BackgroundColor="#8F8A99">
|
|
<Grid RowSpacing="0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="175"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<qui:QSelectedCueFrame x:Name="selectedCueFrame"
|
|
Grid.Row="0"/>
|
|
|
|
|
|
<!--<Grid x:Name="selectedCueGrid2"
|
|
Grid.Row="0"
|
|
RowSpacing="0"
|
|
BackgroundColor="#D8D8D8">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Frame Grid.RowSpan="3" Grid.ColumnSpan="5" BorderColor="Black" BackgroundColor="Transparent"/>
|
|
|
|
<Label Grid.Row ="0"
|
|
Grid.Column="0"
|
|
Text="{Binding number}"
|
|
d:Text="100"
|
|
VerticalOptions="CenterAndExpand"
|
|
HorizontalOptions="CenterAndExpand"
|
|
FontSize="Medium"/>
|
|
|
|
<Label Grid.Row ="1"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="5"
|
|
Text="{Binding name}"
|
|
d:Text="Cue 1"
|
|
VerticalOptions="CenterAndExpand"
|
|
HorizontalOptions="CenterAndExpand"
|
|
FontSize="Large"/>
|
|
</Grid>-->
|
|
|
|
<ScrollView x:Name="cueListScrollView"
|
|
Grid.Row="1">
|
|
<Grid x:Name="cueListsGrid"
|
|
RowSpacing="0"
|
|
ColumnSpacing="0"
|
|
BackgroundColor="#808080">
|
|
|
|
</Grid>
|
|
</ScrollView>
|
|
</Grid>
|
|
</ContentPage> |