Add project files.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user