MainWindow.xaml 1.5 KB

1234567891011121314151617181920
  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="940" Width="320" WindowStyle="None" WindowStartupLocation="CenterScreen">
  9. <Grid Margin="0,0,2,2">
  10. <Image HorizontalAlignment="Left" Height="310" VerticalAlignment="Top" Width="493" Source="i (1).jpg" Margin="0,0,-183,0"/>
  11. <Image HorizontalAlignment="Left" Height="311" Margin="0,315,-130,0" VerticalAlignment="Top" Width="440" Source="i.jpg"/>
  12. <Image HorizontalAlignment="Left" Height="312" Margin="0,626,-22,-8" VerticalAlignment="Top" Width="332" Source="scale_1200.jpg"/>
  13. <Button x:Name="order" Content="Сделать заказ" HorizontalAlignment="Left" Margin="0,541,-4,0" VerticalAlignment="Top" Width="314" Height="85" Click="order_Click" FontSize="36" Foreground="Black" BorderBrush="Black">
  14. <Button.Background>
  15. <SolidColorBrush Color="White" Opacity="0.5"/>
  16. </Button.Background>
  17. </Button>
  18. <Border x:Name="bord" BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="939" VerticalAlignment="Top" Width="312" Margin="0,-1,-2,-8" Background="#66252424" Visibility="Hidden"/>
  19. </Grid>
  20. </Window>