123456789101112131415161718 |
- <Window x:Class="KFC.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:KFC"
- mc:Ignorable="d"
- Title="MainWindow" Height="700" Width="400" WindowStartupLocation="CenterScreen" WindowStyle="None" ResizeMode="NoResize">
- <Grid>
- <Image HorizontalAlignment="Left" Height="230" VerticalAlignment="Top" Width="404" Margin="-4,0,0,0" Source="КАРТИНКИ/KFC.jpg"/>
- <Image Height="319" Margin="0,204,0,0" VerticalAlignment="Top" Source="КАРТИНКИ/KFC1.jpg"/>
- <Image HorizontalAlignment="Right" Margin="-10,436,-0.4,-0.4" Width="404" Source="КАРТИНКИ/KFC2.jpg"/>
- <Image HorizontalAlignment="Left" Height="134" VerticalAlignment="Top" Width="122" Source="КАРТИНКИ/ЛОГОТИП.jpg" Margin="0,10,0,0"/>
- <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"/>
- <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"/>
- </Grid>
- </Window>
|