TaskCreationWindow.xaml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <Window x:Class="WpfApp29.TaskCreationWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WpfApp29"
  7. mc:Ignorable="d"
  8. Title="TaskCreationWindow" Height="450" Width="800">
  9. <Window.Background>
  10. <ImageBrush ImageSource="/bg.png"/>
  11. </Window.Background>
  12. <Grid>
  13. <Border Padding="20" VerticalAlignment="Center" HorizontalAlignment="Center" Background="#E5ECCC74"
  14. BorderThickness="6" CornerRadius="30" BorderBrush="#FF312B04" Height="300" Grid.RowSpan="2">
  15. <Grid>
  16. <Grid.RowDefinitions>
  17. <RowDefinition></RowDefinition>
  18. <RowDefinition></RowDefinition>
  19. <RowDefinition></RowDefinition>
  20. <RowDefinition></RowDefinition>
  21. </Grid.RowDefinitions>
  22. <Grid.ColumnDefinitions>
  23. <ColumnDefinition Width="130"></ColumnDefinition>
  24. <ColumnDefinition></ColumnDefinition>
  25. </Grid.ColumnDefinitions>
  26. <!--Надпись "Вход в личный кабинет"-->
  27. <Label Content="Добавление нового задания" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="24"
  28. FontFamily="Copperplate Gothic Bold" Grid.ColumnSpan="2"></Label>
  29. <!--Поле для ввода названия задания-->
  30. <Label Content="Название задания" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1" Grid.Column="0"></Label>
  31. <TextBox Name="TbTaskName" Width="200" Height="40" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1" Grid.Column="1"></TextBox>
  32. <!--Поле для ввода описания задания-->
  33. <Label Content="Описание задания" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="2" Grid.Column="0"></Label>
  34. <TextBox Name="TbTaskDesc" Width="200" Height="40" HorizontalAlignment="Center" VerticalAlignment="Center"
  35. Grid.Row="2" Grid.Column="1"></TextBox>
  36. <!--Кнопка добавления задания-->
  37. <Button Name="ButtonAddNewTask" Width="220" Height="40" HorizontalAlignment="Center" VerticalAlignment="Center"
  38. Content="Добавить задание" BorderBrush="#FF5A5205"
  39. Grid.Row="4" Grid.Column="1" Click="ButtonAddNewTask_Click"></Button>
  40. <!--Кнопка отмены добавления задания-->
  41. <Button Name="ButtonGoBack" Width="110" Height="40" HorizontalAlignment="Center" VerticalAlignment="Center"
  42. Content="Отмена" BorderBrush="#FF5A5205"
  43. Grid.Row="4" Grid.Column="0" Click="ButtonGoBack_Click"></Button>
  44. </Grid>
  45. </Border>
  46. </Grid>
  47. </Window>