MainWindow.xaml 1.6 KB

1234567891011121314151617
  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 Height="204" Width="500" Source="Images/f1.jpg" Stretch="Fill" VerticalAlignment="Top"/>
  11. <Image HorizontalAlignment="Center" Height="250" Margin="-2,500,0,0" VerticalAlignment="Top" Width="500" Source="Images/f3.jpg" Stretch="Fill"/>
  12. <Image Height="204" Margin="0,204,0,0" Width="500" Source="Images/f2.jpg" Stretch="Fill" VerticalAlignment="Top"/>
  13. <Image HorizontalAlignment="Left" Height="158" VerticalAlignment="Top" Width="159" Source="Images/logo.png" Stretch="UniformToFill"/>
  14. <Button Content="Сделать заказ" HorizontalAlignment="Center" Height="97" Margin="-1,403,0,0" VerticalAlignment="Top" Width="500" FontSize="72" FontWeight="Bold" FontFamily="Monotype Corsiva" RenderTransformOrigin="0.5,0.5" FontStyle="Italic" Click="MakeAnOrder" Background="#FFA3080C" Foreground="White" BorderBrush="Black" Style="{DynamicResource ButtonKFC}"/>
  15. <Border x:Name="bord" BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="885" VerticalAlignment="Top" Width="800" Background="#7F000000" Visibility="Hidden"/>
  16. </Grid>
  17. </Window>