PreorderDishWindow.xaml 1.2 KB

12345678910111213141516171819202122
  1. <Window x:Class="TrainingBeforeExams.PreorderDishWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:TrainingBeforeExams"
  7. mc:Ignorable="d"
  8. Title="PreorderDishWindow" Height="450" Width="400">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="70"></RowDefinition>
  12. <RowDefinition></RowDefinition>
  13. <RowDefinition Height="50"></RowDefinition>
  14. </Grid.RowDefinitions>
  15. <Rectangle Fill="BlueViolet"></Rectangle>
  16. <Label FontSize="20" x:Name="NumberTitle" Foreground="AliceBlue" HorizontalAlignment="Right" VerticalAlignment="Stretch"></Label>
  17. <StackPanel Grid.Row="1" Margin="5" Orientation="Vertical">
  18. <ComboBox FontSize="20" Background="AliceBlue" Foreground="BlueViolet" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"></ComboBox>
  19. </StackPanel>
  20. <Rectangle Grid.Row="2" Fill="BlueViolet"></Rectangle>
  21. </Grid>
  22. </Window>