AddDishWindow.xaml 2.5 KB

12345678910111213141516171819202122
  1. <Window x:Class="Cafe.AddWindows.AddDishWindow"
  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.AddWindows"
  7. mc:Ignorable="d"
  8. Title="Добавить блюдо" Height="900" Width="1600" WindowStartupLocation="CenterScreen" ResizeMode="CanMinimize">
  9. <Grid>
  10. <Label Content="Название:" HorizontalAlignment="Left" Margin="127,86,0,0" VerticalAlignment="Top" Height="60" Width="180" Foreground="White" FontSize="36"/>
  11. <TextBox x:Name="Name" HorizontalAlignment="Left" Margin="307,86,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="60" Width="730" FontSize="36"/>
  12. <Label Content="Цена:" HorizontalAlignment="Left" Margin="127,180,0,0" VerticalAlignment="Top" Height="60" Width="180" Foreground="White" FontSize="36" HorizontalContentAlignment="Right"/>
  13. <TextBox x:Name="Price" HorizontalAlignment="Left" Margin="307,180,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="60" Width="250" FontSize="36"/>
  14. <Label Content="Описание:" HorizontalAlignment="Left" Margin="127,274,0,0" VerticalAlignment="Top" Height="60" Width="180" Foreground="White" FontSize="36"/>
  15. <TextBox x:Name="Description" HorizontalAlignment="Left" Margin="137,350,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Height="328" Width="904" FontSize="36"/>
  16. <Label Content="Изображение:" HorizontalAlignment="Left" Margin="127,708,0,0" VerticalAlignment="Top" Height="61" Width="260" Foreground="White" FontSize="36"/>
  17. <Image x:Name="Picture" HorizontalAlignment="Left" Height="649" Margin="1129,133,0,0" VerticalAlignment="Top" Width="411"/>
  18. <Button x:Name="SelectButton" Content="Выбрать" HorizontalAlignment="Left" Margin="381,708,0,0" VerticalAlignment="Top" Height="60" Width="180" FontSize="36" Click="SelectButtonClick"/>
  19. <Button x:Name="BackButton" Content="Назад" HorizontalAlignment="Left" Margin="20,17,0,0" VerticalAlignment="Top" Height="39" Width="140" FontSize="25" Click="BackButtonClick"/>
  20. <Button x:Name="AddButton" Content="Добавить" HorizontalAlignment="Center" Margin="0,792,0,0" VerticalAlignment="Top" Height="60" Width="180" FontSize="36" Click="AddButtonClick"/>
  21. </Grid>
  22. </Window>