123456789101112131415161718192021222324252627282930313233343536373839 |
- <Window x:Class="TrainingBeforeExams.WaiterWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:TrainingBeforeExams"
- mc:Ignorable="d"
- Title="WaiterWindow" Height="450" Width="600">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="50"></RowDefinition>
- <RowDefinition Height="*"></RowDefinition>
- <RowDefinition Height="30"></RowDefinition>
- </Grid.RowDefinitions>
- <Rectangle Fill="BlueViolet"></Rectangle>
- <Label x:Name="currentLogin" FontSize="30" Foreground="AliceBlue" HorizontalAlignment="Right" VerticalAlignment="Center"></Label>
- <Grid Grid.Row="1">
- <ListView x:Name="orderList" HorizontalContentAlignment="Stretch">
- <ListView.ItemTemplate>
- <DataTemplate>
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <TextBlock Text="{Binding Place.NumberPlace}" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="20"></TextBlock>
- <TextBlock Grid.Column="1" Text="{Binding StatusOrder.Title}" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="20"></TextBlock>
- <TextBlock Grid.Column="2" Text="{Binding Preorder.Number}" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="20"></TextBlock>
- <Button Grid.Column="3" Click="Button_Click" Content="Инфо" Background="AliceBlue" Foreground="BlueViolet" Margin="5" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="20"></Button>
- </Grid>
- </DataTemplate>
- </ListView.ItemTemplate>
- </ListView>
- </Grid>
- <Rectangle Grid.Row="2" Fill="BlueViolet"></Rectangle>
- </Grid>
- </Window>
|