MainWindow.xaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <Window x:Class="TerminalKFC.MainWindow"
  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="MainWindow" Height="750" Width="500" WindowStartupLocation="CenterScreen" ResizeMode="NoResize" WindowStyle="None">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition/>
  12. <RowDefinition/>
  13. <RowDefinition/>
  14. </Grid.RowDefinitions>
  15. <Grid Grid.Row="0">
  16. <Grid.Background>
  17. <ImageBrush ImageSource="C:\Users\nikich4523\source\repos\TerminalKFC\TerminalKFC\Image\1.jpg"/>
  18. </Grid.Background>
  19. <Image HorizontalAlignment="Left" VerticalAlignment="Top" Height="120" Source="C:\Users\nikich4523\source\repos\TerminalKFC\TerminalKFC\Image\4.jpg"/>
  20. </Grid>
  21. <Grid Grid.Row="1">
  22. <Grid.Background>
  23. <ImageBrush ImageSource="C:\Users\nikich4523\source\repos\TerminalKFC\TerminalKFC\Image\2.jpg"/>
  24. </Grid.Background>
  25. <Grid.RowDefinitions>
  26. <RowDefinition/>
  27. <RowDefinition Height="0.4*"/>
  28. </Grid.RowDefinitions>
  29. <Border Grid.Row="1" Background="#B2716666">
  30. <Button Content="Сделать заказ" Foreground="Yellow" FontSize="30" Background="Transparent" FontStyle="Italic" FontWeight="Bold" Click="Button_Click"/>
  31. </Border>
  32. </Grid>
  33. <Grid Grid.Row="2">
  34. <Grid.Background>
  35. <ImageBrush ImageSource="C:\Users\nikich4523\source\repos\TerminalKFC\TerminalKFC\Image\3.jpg"/>
  36. </Grid.Background>
  37. </Grid>
  38. </Grid>
  39. </Window>