AddTask.xaml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <Page x:Class="Esoft.Pages.AddTask"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Esoft.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="AddTask">
  10. <Grid>
  11. <Label Style="{StaticResource LabelStyle}" FontFamily="Segoe UI Black" Background="#FFDAB3F7">
  12. </Label>
  13. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  14. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
  15. <StackPanel Orientation="Horizontal">
  16. <StackPanel Orientation="Horizontal">
  17. <TextBlock Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial" Text="ЗАДАЧА"/>
  18. <Separator Width="20" Background="{x:Null}" />
  19. <TextBox Name="TBoxTask" Width="190"/>
  20. </StackPanel>
  21. </StackPanel>
  22. <Separator Height="10" Background="{x:Null}" />
  23. <StackPanel Orientation="Horizontal">
  24. <TextBlock Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial" Text="ИСПОЛНИТЕЛЬ"/>
  25. <Separator Width="20" Background="{x:Null}" />
  26. <TextBox Name="TBoxExecutor" Width="182"/>
  27. </StackPanel>
  28. <Separator Height="10" Background="{x:Null}" />
  29. <StackPanel Orientation="Horizontal">
  30. <TextBlock Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial" Text="МАНАГЕР"/>
  31. <Separator Width="20" Background="{x:Null}" />
  32. <TextBox Name="TBoxManager" Width="150"/>
  33. </StackPanel>
  34. <Separator Height="10" Background="{x:Null}" />
  35. <StackPanel Orientation="Horizontal">
  36. <TextBlock Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial" Text="Статус"/>
  37. <Separator Width="20" Background="{x:Null}" />
  38. <TextBox Name="TBoxStatus" TextWrapping="Wrap" Width="187"/>
  39. </StackPanel>
  40. <Separator Height="10" Background="{x:Null}" />
  41. </StackPanel>
  42. <StackPanel VerticalAlignment="Center">
  43. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="1">
  44. <Button Height="30" Width="200" Margin="5" Name="BtnSave" Content="Сохранить" FontSize="14"/>
  45. </StackPanel>
  46. </StackPanel>
  47. </StackPanel>
  48. </Grid>
  49. </Page>