31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<UserControl
|
|
x:Class="WeddingBooth.Views.SeatingChartView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Margin="40,40,16,16">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="18" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<TextBlock
|
|
Grid.Row="0"
|
|
HorizontalAlignment="Center"
|
|
FontFamily="{StaticResource AccentFontFamily}"
|
|
FontWeight="Normal"
|
|
Style="{StaticResource LargeDisplayTextBlockStyle}"
|
|
Text="find your seat" />
|
|
<ItemsControl
|
|
Grid.Row="2"
|
|
ItemTemplateSelector="{Binding TemplateSelector}"
|
|
ItemsSource="{Binding}">
|
|
<ItemsControl.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<UniformGrid Columns="3" />
|
|
</ItemsPanelTemplate>
|
|
</ItemsControl.ItemsPanel>
|
|
</ItemsControl>
|
|
</Grid>
|
|
</UserControl>
|