12345678910111213141516171819202122232425262728293031 |
- <Window x:Class="TerminalKFC.Zakaz"
- 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:TerminalKFC"
- mc:Ignorable="d"
- Title="Zakaz" Height="450" Width="500" WindowStartupLocation="CenterScreen">
- <Grid Background="AliceBlue">
- <Grid.RowDefinitions>
- <RowDefinition Height="308"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <StackPanel HorizontalAlignment="Center" VerticalAlignment="Bottom" Orientation="Horizontal">
- <Button Height="150" Width="150" Margin="0,0,40,0" Style="{DynamicResource ButtonKFC}" Name="MenuBtn" Click="MenuBtn_Click">
- <Button.Background>
- <ImageBrush ImageSource="photo/iEVBJY34B.jpg"></ImageBrush>
- </Button.Background>
- </Button>
- <Button Height="150" Width="150" Style="{DynamicResource ButtonKFC2}" Click="MenuBtn_Click">
- <Button.Background>
- <ImageBrush ImageSource="photo/iI1ZPJXL7.jpg"></ImageBrush>
- </Button.Background>
- </Button>
- </StackPanel>
- <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Top">
- <Label FontSize="20" Margin="0,0,80,0">Здесь</Label>
- <Label FontSize="20" Margin="30,0,0,0">С собой</Label>
- </StackPanel>
- </Grid>
- </Window>
|