MainWindow.xaml 1.5 KB

123456789101112131415161718
  1. <Window x:Class="KFC.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:KFC"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="700" Width="400" WindowStartupLocation="CenterScreen" WindowStyle="None" ResizeMode="NoResize">
  9. <Grid>
  10. <Image HorizontalAlignment="Left" Height="230" VerticalAlignment="Top" Width="404" Margin="-4,0,0,0" Source="КАРТИНКИ/KFC.jpg"/>
  11. <Image Height="319" Margin="0,204,0,0" VerticalAlignment="Top" Source="КАРТИНКИ/KFC1.jpg"/>
  12. <Image HorizontalAlignment="Right" Margin="-10,436,-0.4,-0.4" Width="404" Source="КАРТИНКИ/KFC2.jpg"/>
  13. <Image HorizontalAlignment="Left" Height="134" VerticalAlignment="Top" Width="122" Source="КАРТИНКИ/ЛОГОТИП.jpg" Margin="0,10,0,0"/>
  14. <Button Content="Сделать заказ" HorizontalAlignment="Left" Margin="0,318,0,0" VerticalAlignment="Top" Width="400" Height="132" FontFamily="TypoUpright BT" FontSize="20" Opacity="0.97" Background="#66FF1F1F" Click="Button_Click_1"/>
  15. <Border Name="Bord" BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="684" Margin="-10,10,-0.4,-0.4" VerticalAlignment="Top" Width="404" Background="#7F000000" Visibility="Hidden"/>
  16. </Grid>
  17. </Window>