Order.xaml 993 B

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