SeatSelectionWindow.xaml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <Window x:Class="TerminalKFC.Windows.SeatSelectionWindow"
  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="SeatSelectionWindow"
  9. Height="250"
  10. Width="400"
  11. WindowStartupLocation="CenterScreen"
  12. WindowStyle="None"
  13. ResizeMode="NoResize">
  14. <Grid Background="#FFCFE9FF">
  15. <Image
  16. HorizontalAlignment="Left"
  17. Height="100"
  18. Width="150"
  19. Margin="40,60,0,0"
  20. VerticalAlignment="Top"
  21. Source="../Images/img4.jpg"
  22. Stretch="Fill"
  23. MouseDown="Button"/>
  24. <Image
  25. HorizontalAlignment="Left"
  26. Height="100"
  27. Width="150"
  28. Margin="217,60,0,0"
  29. VerticalAlignment="Top"
  30. Source="../Images/img5.jpg"
  31. Stretch="Fill"
  32. MouseDown="Button">
  33. </Image>
  34. <Label
  35. Content="Здесь"
  36. HorizontalAlignment="Left"
  37. Margin="80,160,0,0"
  38. VerticalAlignment="Top"
  39. FontWeight="Bold"
  40. FontSize="16"/>
  41. <Label
  42. Content="С собой"
  43. HorizontalAlignment="Left"
  44. Margin="262,160,0,0"
  45. VerticalAlignment="Top"
  46. FontWeight="Bold"
  47. FontSize="16"/>
  48. </Grid>
  49. </Window>