Zakaz.xaml 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. <Window x:Class="TerminalKFC.Zakaz"
  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:TerminalKFC"
  7. mc:Ignorable="d"
  8. Title="Zakaz" Height="450" Width="500" WindowStartupLocation="CenterScreen">
  9. <Grid Background="AliceBlue">
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="308"/>
  12. <RowDefinition Height="*"/>
  13. </Grid.RowDefinitions>
  14. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Bottom" Orientation="Horizontal">
  15. <Button Height="150" Width="150" Margin="0,0,40,0" Style="{DynamicResource ButtonKFC}" Name="MenuBtn" Click="MenuBtn_Click">
  16. <Button.Background>
  17. <ImageBrush ImageSource="photo/iEVBJY34B.jpg"></ImageBrush>
  18. </Button.Background>
  19. </Button>
  20. <Button Height="150" Width="150" Style="{DynamicResource ButtonKFC2}" Click="MenuBtn_Click">
  21. <Button.Background>
  22. <ImageBrush ImageSource="photo/iI1ZPJXL7.jpg"></ImageBrush>
  23. </Button.Background>
  24. </Button>
  25. </StackPanel>
  26. <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Top">
  27. <Label FontSize="20" Margin="0,0,80,0">Здесь</Label>
  28. <Label FontSize="20" Margin="30,0,0,0">С собой</Label>
  29. </StackPanel>
  30. </Grid>
  31. </Window>