12345678910111213141516171819202122232425262728293031 |
- <Window x:Class="TerminalKFC.Windows.ResultOrderWindow"
- 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="ResultOrderWindow"
- Height="400"
- Width="350"
- WindowStartupLocation="CenterScreen"
- WindowStyle="None"
- ResizeMode="NoResize">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="100*"/>
- <RowDefinition Height="300*"/>
- </Grid.RowDefinitions>
- <Image Source="/TerminalKFC;component/Images/img6.jpg"/>
-
- <TextBox
- Name="BlockOfGoods"
- Grid.Row="1"
- Width="300"
- Height="300"
- VerticalAlignment="Bottom"
- HorizontalAlignment="Center"
- IsReadOnly="True">
- </TextBox>
- </Grid>
- </Window>
|