|
@@ -0,0 +1,64 @@
|
|
|
+<Window x:Class="Kusach.Windows.TransportEditWindow"
|
|
|
+ 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:Kusach.Windows"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ Title="TransportEditWindow"
|
|
|
+ Height="250"
|
|
|
+ Width="300"
|
|
|
+ ResizeMode="NoResize"
|
|
|
+ WindowStyle="None"
|
|
|
+ WindowStartupLocation="CenterScreen">
|
|
|
+ <Grid>
|
|
|
+ <StackPanel
|
|
|
+ Margin="0,10,0,0"
|
|
|
+ HorizontalAlignment="Center"
|
|
|
+ VerticalAlignment="Top">
|
|
|
+ <Label
|
|
|
+ Content="Название ТС"
|
|
|
+ HorizontalAlignment="Left"
|
|
|
+ VerticalAlignment="Top"
|
|
|
+ Height="30"
|
|
|
+ Width="190"/>
|
|
|
+ <TextBox
|
|
|
+ x:Name="NameOfTransportBox"
|
|
|
+ HorizontalAlignment="Left"
|
|
|
+ VerticalAlignment="Top"
|
|
|
+ Height="30"
|
|
|
+ Width="190"/>
|
|
|
+ <Label
|
|
|
+ Content="Номерной знак"
|
|
|
+ HorizontalAlignment="Left"
|
|
|
+ VerticalAlignment="Top"
|
|
|
+ Height="30"
|
|
|
+ Width="190"/>
|
|
|
+ <TextBox
|
|
|
+ x:Name="NumberPlateBox"
|
|
|
+ HorizontalAlignment="Left"
|
|
|
+ VerticalAlignment="Top"
|
|
|
+ Height="30"
|
|
|
+ Width="190"/>
|
|
|
+ </StackPanel>
|
|
|
+ <Button
|
|
|
+ Content="Сохранить"
|
|
|
+ HorizontalAlignment="Left"
|
|
|
+ Margin="170,200,0,0"
|
|
|
+ VerticalAlignment="Top"
|
|
|
+ Height="40"
|
|
|
+ Width="120"
|
|
|
+ Click="SaveTransportButton_Click"/>
|
|
|
+ <Button
|
|
|
+ Content="Отмена"
|
|
|
+ HorizontalAlignment="Left"
|
|
|
+ Margin="10,200,0,0"
|
|
|
+ VerticalAlignment="Top"
|
|
|
+ Height="40"
|
|
|
+ Width="120"
|
|
|
+ Click="BackButton_Click"/>
|
|
|
+ <Border
|
|
|
+ BorderBrush="Black"
|
|
|
+ BorderThickness="2"/>
|
|
|
+ </Grid>
|
|
|
+</Window>
|