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