12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <Window x:Class="TerminalKFC.Windows.SeatSelectionWindow"
- 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.Windows"
- mc:Ignorable="d"
- Title="SeatSelectionWindow"
- Height="250"
- Width="400"
- WindowStartupLocation="CenterScreen"
- WindowStyle="None"
- ResizeMode="NoResize">
- <Grid Background="#FFCFE9FF">
- <Image
- HorizontalAlignment="Left"
- Height="100"
- Width="150"
- Margin="40,60,0,0"
- VerticalAlignment="Top"
- Source="../Images/img4.jpg"
- Stretch="Fill"
- MouseDown="Button"/>
- <Image
- HorizontalAlignment="Left"
- Height="100"
- Width="150"
- Margin="217,60,0,0"
- VerticalAlignment="Top"
- Source="../Images/img5.jpg"
- Stretch="Fill"
- MouseDown="Button">
- </Image>
- <Label
- Content="Здесь"
- HorizontalAlignment="Left"
- Margin="80,160,0,0"
- VerticalAlignment="Top"
- FontWeight="Bold"
- FontSize="16"/>
- <Label
- Content="С собой"
- HorizontalAlignment="Left"
- Margin="262,160,0,0"
- VerticalAlignment="Top"
- FontWeight="Bold"
- FontSize="16"/>
- </Grid>
- </Window>
|