AddTask.xaml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <Page x:Class="ROGOZ.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:ROGOZ.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="AddTask">
  10. <Grid>
  11. <Label Style="{StaticResource LabelStyle}">
  12. не готово!
  13. </Label>
  14. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  15. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
  16. <StackPanel Orientation="Horizontal">
  17. <StackPanel Orientation="Horizontal">
  18. <TextBlock Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial" Text="ЗАДАЧА"/>
  19. <Separator Width="20" Background="{x:Null}" />
  20. <TextBox Name="TBoxTitle" Width="190"/>
  21. </StackPanel>
  22. </StackPanel>
  23. <Separator Height="10" Background="{x:Null}" />
  24. <StackPanel Orientation="Horizontal">
  25. <TextBlock Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial" Text="ИСПОЛНИТЕЛЬ"/>
  26. <Separator Width="20" Background="{x:Null}" />
  27. <TextBox Name="TBoxCost" Width="182"/>
  28. </StackPanel>
  29. <Separator Height="10" Background="{x:Null}" />
  30. <StackPanel Orientation="Horizontal">
  31. <TextBlock Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial" Text="МАНАГЕР"/>
  32. <Separator Width="20" Background="{x:Null}" />
  33. <TextBox Name="TBoxDuration" Width="150"/>
  34. </StackPanel>
  35. <Separator Height="10" Background="{x:Null}" />
  36. <StackPanel Orientation="Horizontal">
  37. <TextBlock Style="{StaticResource BlockHeader}" FontSize="16" FontFamily="Arial" Text="Статус"/>
  38. <Separator Width="20" Background="{x:Null}" />
  39. <TextBox Name="TBoxDescription" TextWrapping="Wrap" Height="115" Width="187"/>
  40. </StackPanel>
  41. <Separator Height="10" Background="{x:Null}" />
  42. </StackPanel>
  43. <StackPanel VerticalAlignment="Center">
  44. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="1">
  45. <Button Height="30" Width="200" Margin="5" Name="BtnSave" Content="Сохранить" FontSize="14"/>
  46. </StackPanel>
  47. </StackPanel>
  48. </StackPanel>
  49. </Grid>
  50. </Page>