|
@@ -0,0 +1,69 @@
|
|
|
+<Page x:Class="ROGOZ.Pages.AddEditPage"
|
|
|
+ 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:ROGOZ.Pages"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ d:Height="620" d:Width="750"
|
|
|
+ Title="AddEditPage">
|
|
|
+
|
|
|
+ <Grid>
|
|
|
+ <StackPanel Orientation="Vertical" Height="550" VerticalAlignment="Top">
|
|
|
+ <StackPanel Orientation="Vertical">
|
|
|
+ <TextBlock Text="Название задачи:" FontSize="25" FontFamily="Comic Sans Ms" Foreground="#52a8ff" HorizontalAlignment="Left" Width="210" Margin="50,10,0,5"/>
|
|
|
+ <TextBox x:Name="TaskNameTB" Height="35" Width="700" FontSize="30" FontFamily="Comic Sans Ms"/>
|
|
|
+ </StackPanel>
|
|
|
+ <StackPanel Orientation="Horizontal">
|
|
|
+ <StackPanel Orientation="Vertical" Width="375">
|
|
|
+ <TextBlock Text="Описание задачи:" FontSize="25" FontFamily="Comic Sans Ms" Foreground="#52a8ff" HorizontalAlignment="Left" Width="220" Margin="50,10,0,5"/>
|
|
|
+ <TextBox x:Name="TaskDescriptionTB" Height="205" Width="340" TextWrapping="Wrap" HorizontalAlignment="Left" Margin="25,0,0,0" FontSize="25" FontFamily="Comic Sans Ms"/>
|
|
|
+ </StackPanel>
|
|
|
+ <StackPanel Width="375" Orientation="Vertical">
|
|
|
+ <StackPanel Orientation="Vertical">
|
|
|
+ <TextBlock Text="Cтатус задачи:" FontSize="25" FontFamily="Comic Sans Ms" Foreground="#52a8ff" HorizontalAlignment="Left" Width="220" Margin="40,10,0,5"/>
|
|
|
+ <ComboBox x:Name="CmbStatus" Height="35" Width="340" HorizontalAlignment="Left" Margin="10,0,0,0"/>
|
|
|
+ </StackPanel>
|
|
|
+
|
|
|
+ <StackPanel Orientation="Vertical">
|
|
|
+ <TextBlock Text="Характер задачи:" FontSize="25" FontFamily="Comic Sans Ms" Foreground="#52a8ff" HorizontalAlignment="Left" Width="220" Margin="40,10,0,5"/>
|
|
|
+ <ComboBox x:Name="CmbTaskCharacter" Height="35" Width="340" HorizontalAlignment="Left" Margin="10,0,0,0"/>
|
|
|
+ </StackPanel>
|
|
|
+
|
|
|
+ <StackPanel Orientation="Vertical">
|
|
|
+ <TextBlock Text="Сложность задачи:" FontSize="25" FontFamily="Comic Sans Ms" Foreground="#52a8ff" HorizontalAlignment="Left" Width="220" Margin="40,10,0,5"/>
|
|
|
+ <TextBox x:Name="HardTB" Height="35" Width="340" HorizontalAlignment="Left" Margin="10,0,0,0"/>
|
|
|
+ </StackPanel>
|
|
|
+ </StackPanel>
|
|
|
+
|
|
|
+ </StackPanel>
|
|
|
+
|
|
|
+ <StackPanel Orientation="Vertical">
|
|
|
+ <TextBlock Text="Исполнитель:" FontSize="25" FontFamily="Comic Sans Ms" Foreground="#52a8ff" HorizontalAlignment="Left" Width="220" Margin="50,10,0,5"/>
|
|
|
+ <ComboBox x:Name="CmbExecutor" Height="35" Width="700" HorizontalAlignment="Left" Margin="25,0,0,0"/>
|
|
|
+ </StackPanel>
|
|
|
+
|
|
|
+ <StackPanel Orientation="Horizontal">
|
|
|
+ <StackPanel Orientation="Vertical" Width="250">
|
|
|
+ <TextBlock Text="Срок исполнения:" FontSize="25" FontFamily="Comic Sans Ms" Foreground="#52a8ff" HorizontalAlignment="Left" Width="220" Margin="30,10,0,5"/>
|
|
|
+ <DatePicker Margin="25,0,0,0"/>
|
|
|
+ </StackPanel>
|
|
|
+ <StackPanel Orientation="Vertical" Width="250">
|
|
|
+ <TextBlock Text="Дата выполнения:" FontSize="25" FontFamily="Comic Sans Ms" Foreground="#52a8ff" HorizontalAlignment="Left" Width="220" Margin="25,10,0,5"/>
|
|
|
+ <DatePicker Margin="15,0,10,0"/>
|
|
|
+ </StackPanel>
|
|
|
+ <StackPanel Orientation="Vertical" Width="250">
|
|
|
+ <TextBlock Text="Время выполнения:" FontSize="25" FontFamily="Comic Sans Ms" Foreground="#52a8ff" HorizontalAlignment="Left" Width="240" Margin="10,10,0,5"/>
|
|
|
+ <TextBox Margin="10,0,25,0" Height="35" FontSize="30" FontFamily="Comic Sans Ms"/>
|
|
|
+ </StackPanel>
|
|
|
+ </StackPanel>
|
|
|
+ </StackPanel>
|
|
|
+
|
|
|
+
|
|
|
+ <StackPanel Width="700" Height="70" Orientation="Horizontal" VerticalAlignment="Bottom" Margin="0,20,0,5">
|
|
|
+ <Button x:Name="BtnCancel" Content="Отмена" Style="{StaticResource AuthoButtons}"/>
|
|
|
+ <Button x:Name="BtnSaveTask" Content="Сохранить" Style="{StaticResource AuthoButtons}" Margin="100,0,0,0"/>
|
|
|
+ </StackPanel>
|
|
|
+
|
|
|
+ </Grid>
|
|
|
+</Page>
|