MainWindow.xaml 1.3 KB

123456789101112131415161718192021
  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="Терминал KFC" Height="450" Width="300" WindowStartupLocation="CenterScreen" ResizeMode="NoResize" WindowStyle="None">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="*"/>
  12. <RowDefinition Height="*"/>
  13. <RowDefinition Height="*"/>
  14. </Grid.RowDefinitions>
  15. <Image Grid.Row="0" Source="photo/maxresdefault.jpg" Stretch="Fill"></Image>
  16. <Image Source="photo/logo.jpg" Width="100" Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"></Image>
  17. <Image Grid.Row="1" Source="photo/iI1ZPJXL7.jpg" Stretch="Fill"></Image>
  18. <Image Grid.Row="2" Source="photo/kupon.jpg" Stretch="Fill"></Image>
  19. <Button Name="CreateOrderBtn" Grid.Row="1" Height="50" VerticalAlignment="Bottom" Opacity="0.5" FontSize="30" FontStyle="Italic" HorizontalContentAlignment="Center" FontFamily="Georgia" Click="CreateOrderBtn_Click">Сделать заказ</Button>
  20. </Grid>
  21. </Window>