ResultOrderWindow.xaml 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <Window x:Class="TerminalKFC.Windows.ResultOrderWindow"
  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:TerminalKFC.Windows"
  7. mc:Ignorable="d"
  8. Title="ResultOrderWindow"
  9. Height="400"
  10. Width="350"
  11. WindowStartupLocation="CenterScreen"
  12. WindowStyle="None"
  13. ResizeMode="NoResize">
  14. <Grid>
  15. <Grid.RowDefinitions>
  16. <RowDefinition Height="100*"/>
  17. <RowDefinition Height="300*"/>
  18. </Grid.RowDefinitions>
  19. <Image Source="/TerminalKFC;component/Images/img6.jpg"/>
  20. <TextBox
  21. Name="BlockOfGoods"
  22. Grid.Row="1"
  23. Width="300"
  24. Height="300"
  25. VerticalAlignment="Bottom"
  26. HorizontalAlignment="Center"
  27. IsReadOnly="True">
  28. </TextBox>
  29. </Grid>
  30. </Window>