DishWindow.xaml 1.9 KB

12345678910111213141516171819
  1. <Window x:Class="Cafe.ElementsWindows.DishWindow"
  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:Cafe.ElementsWindows"
  7. mc:Ignorable="d"
  8. Title="Блюдо" Height="900" Width="1600" WindowStartupLocation="CenterScreen" ResizeMode="CanMinimize">
  9. <Grid>
  10. <Label Content="Название:" HorizontalAlignment="Left" Margin="127,166,0,0" VerticalAlignment="Top" Height="60" Width="180" Foreground="White" FontSize="36"/>
  11. <Label x:Name="Name" HorizontalAlignment="Left" Margin="307,166,0,0" VerticalAlignment="Top" Height="60" Width="730" FontSize="36" Foreground="White"/>
  12. <Label Content="Цена:" HorizontalAlignment="Left" Margin="127,260,0,0" VerticalAlignment="Top" Height="60" Width="180" Foreground="White" FontSize="36" HorizontalContentAlignment="Right"/>
  13. <Label x:Name="Price" HorizontalAlignment="Left" Margin="307,260,0,0" VerticalAlignment="Top" Height="60" Width="250" FontSize="36" Foreground="White"/>
  14. <Label Content="Описание:" HorizontalAlignment="Left" Margin="127,354,0,0" VerticalAlignment="Top" Height="60" Width="180" Foreground="White" FontSize="36"/>
  15. <Label x:Name="Description" HorizontalAlignment="Left" Margin="137,430,0,0" VerticalAlignment="Top" Height="328" Width="904" FontSize="36" Foreground="White"/>
  16. <Image x:Name="Picture" HorizontalAlignment="Left" Height="649" Margin="1129,133,0,0" VerticalAlignment="Top" Width="411"/>
  17. <Button x:Name="BackButton" Content="Назад" HorizontalAlignment="Left" Margin="20,17,0,0" VerticalAlignment="Top" Height="39" Width="140" FontSize="25" Click="BackButtonClick"/>
  18. </Grid>
  19. </Window>