|
@@ -0,0 +1,70 @@
|
|
|
+<Page x:Class="SASDesktop.Views.Management.Assign"
|
|
|
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
+ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
+ xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
+ xmlns:local="clr-namespace:SASDesktop.Views.Management"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ d:DesignHeight="600" d:DesignWidth="800"
|
|
|
+ Title="Список ТС">
|
|
|
+ <!--Страница присвоения водителю ТС-->
|
|
|
+ <ScrollViewer>
|
|
|
+ <StackPanel
|
|
|
+ CanVerticallyScroll="True"
|
|
|
+ Style="{StaticResource FormContainer}">
|
|
|
+
|
|
|
+ <!--Заголовок страницы-->
|
|
|
+ <TextBlock
|
|
|
+ HorizontalAlignment="Center"
|
|
|
+ Style="{StaticResource H2}"
|
|
|
+ Text="Присвоение ТС водителю"/>
|
|
|
+
|
|
|
+ <!--Кнопки управления-->
|
|
|
+ <StackPanel Orientation="Horizontal">
|
|
|
+ <Button
|
|
|
+ Content="Сохранить"
|
|
|
+ Style="{StaticResource StandartButton}"/>
|
|
|
+ <Button
|
|
|
+ Content="Отменить"
|
|
|
+ Style="{StaticResource StandartButton}"
|
|
|
+ Command="{Binding Source={x:Static root:Navigation.GoBack}}"/>
|
|
|
+ </StackPanel>
|
|
|
+
|
|
|
+ <!--Выбор-->
|
|
|
+ <StackPanel Orientation="Vertical">
|
|
|
+
|
|
|
+ <Grid>
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="*"/>
|
|
|
+ <ColumnDefinition Width="*"/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="Auto"/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+
|
|
|
+ <!--Владелец-->
|
|
|
+ <StackPanel Grid.Column="0" Grid.Row="0" Margin="4">
|
|
|
+ <!--Надпись-->
|
|
|
+ <StackPanel Orientation="Horizontal">
|
|
|
+ <TextBlock Style="{StaticResource H5}" Text="Владелец"/>
|
|
|
+ <Label Style="{StaticResource RequiredMark}" Margin="4,0,0,0"/>
|
|
|
+ </StackPanel>
|
|
|
+ <!--Выпадающий список-->
|
|
|
+ <TextBox/>
|
|
|
+ </StackPanel>
|
|
|
+
|
|
|
+ <!--ТС-->
|
|
|
+ <StackPanel Grid.Column="0" Grid.Row="0" Margin="4">
|
|
|
+ <!--Надпись-->
|
|
|
+ <StackPanel Orientation="Horizontal">
|
|
|
+ <TextBlock Style="{StaticResource H5}" Text="Транспортное средство"/>
|
|
|
+ <Label Style="{StaticResource RequiredMark}" Margin="4,0,0,0"/>
|
|
|
+ </StackPanel>
|
|
|
+ <!--Выпадающий список-->
|
|
|
+ <TextBox/>
|
|
|
+ </StackPanel>
|
|
|
+ </Grid>
|
|
|
+ </StackPanel>
|
|
|
+ </StackPanel>
|
|
|
+ </ScrollViewer>
|
|
|
+</Page>
|