MainWindow.xaml 1.1 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="750" Width="500" ResizeMode="NoResize" WindowStyle="None" WindowStartupLocation="CenterScreen">
  9. <Grid>
  10. <Image Source="KFC4.jpg" Stretch="Fill" Margin="0,218,0,198.4" />
  11. <Image Source="KFC3.jpg" Stretch="Fill" Margin="0,0,0,478.4" />
  12. <Image Source="KFC2.jpg" Stretch="Fill" Margin="0,514,0,0.4"/>
  13. <Image Source="1KFC.jpeg" Margin="4,4,368,627.4"/>
  14. <Button x:Name="btn_order" Content="Сделать заказ" FontSize="34" FontFamily="Century Gothic" Background="Yellow" Opacity="0.4" Margin="2,384,2,289.4" Click="Button_Order"/>
  15. <Border x:Name="border" Background="#7F000000" Visibility="Hidden"/>
  16. </Grid>
  17. </Window>