12345678910111213141516 |
- <Window x:Class="KFC.Order"
- 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="Order" Height="250" Width="400" WindowStartupLocation="CenterScreen" WindowStyle="None" ResizeMode="NoResize">
- <Grid Background="Aqua">
- <Image Source="1.jpeg" Margin="40,50,210,90" MouseDown="Image_MouseDown_Here"/>
- <TextBlock Text="Здесь" TextAlignment="Center" FontFamily="Century Gothic" FontSize="16" Margin="30,170,220,50"/>
- <Image Source="2.jpg" Margin="240,40,40,80" MouseDown="Image_MouseDown_Ssoboy"/>
- <TextBlock Text="С собой" TextAlignment="Center" FontFamily="Century Gothic" FontSize="16" Margin="220,170,30,50"/>
- </Grid>
- </Window>
|