DriverEditWindow.xaml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <Window x:Class="Kusach.Windows.DriverEditWindow"
  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:Kusach.Windows"
  7. mc:Ignorable="d"
  8. Title="DriverEditWindow"
  9. Height="350"
  10. Width="300"
  11. ResizeMode="NoResize"
  12. WindowStyle="None"
  13. WindowStartupLocation="CenterScreen">
  14. <Grid>
  15. <StackPanel
  16. Margin="0,10,0,0"
  17. HorizontalAlignment="Center"
  18. VerticalAlignment="Top">
  19. <Label
  20. Content="Номерной знак ТС"
  21. HorizontalAlignment="Left"
  22. VerticalAlignment="Top"
  23. Height="30"
  24. Width="190"/>
  25. <TextBox
  26. x:Name="NumberPlate"
  27. HorizontalAlignment="Left"
  28. VerticalAlignment="Top"
  29. Height="30"
  30. Width="190"/>
  31. <Label
  32. Content="Имя"
  33. HorizontalAlignment="Left"
  34. VerticalAlignment="Top"
  35. Height="30"
  36. Width="190"/>
  37. <TextBox
  38. x:Name="NameBox"
  39. HorizontalAlignment="Left"
  40. VerticalAlignment="Top"
  41. Height="30"
  42. Width="190"/>
  43. <Label
  44. Content="Фамилия"
  45. HorizontalAlignment="Left"
  46. VerticalAlignment="Top"
  47. Height="30"
  48. Width="190"/>
  49. <TextBox
  50. x:Name="SurnameBox"
  51. HorizontalAlignment="Left"
  52. VerticalAlignment="Top"
  53. Height="30"
  54. Width="190"/>
  55. <Label
  56. Content="Отчество"
  57. HorizontalAlignment="Left"
  58. VerticalAlignment="Top"
  59. Height="30"
  60. Width="190"/>
  61. <TextBox
  62. x:Name="PatronymicBox"
  63. HorizontalAlignment="Left"
  64. VerticalAlignment="Top"
  65. Height="30"
  66. Width="190"/>
  67. </StackPanel>
  68. <Button
  69. Content="Сохранить"
  70. HorizontalAlignment="Left"
  71. Margin="170,300,0,0"
  72. VerticalAlignment="Top"
  73. Height="40"
  74. Width="120"
  75. Click="SaveDriverButton_Click"/>
  76. <Button
  77. Content="Отмена"
  78. HorizontalAlignment="Left"
  79. Margin="10,300,0,0"
  80. VerticalAlignment="Top"
  81. Height="40"
  82. Width="120"
  83. Click="BackButton_Click"
  84. IsDefault="True"/>
  85. <Border
  86. BorderBrush="Black"
  87. BorderThickness="2"/>
  88. </Grid>
  89. </Window>