TaskList.xaml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <Page x:Class="ROGOZ.Pages.TaskList"
  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="TaskList">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="30"/>
  13. <RowDefinition Height="30"/>
  14. <RowDefinition Height="*"/>
  15. </Grid.RowDefinitions>
  16. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
  17. <ComboBox Margin="5" Width="200" Height="30" Name="ComboSortBy" FontSize="16">
  18. <ComboBoxItem Content="По исполнителю"/>
  19. <ComboBoxItem Content="По статусу"/>
  20. </ComboBox>
  21. <ComboBox Margin="5" Width="200" Height="30" Name="ComboDiscount" FontSize="16">
  22. <ComboBoxItem Content="Все"/>
  23. <ComboBoxItem Content="Не придумал"/>
  24. </ComboBox>
  25. <TextBox Name="TBoxSearch" Width="200" Height="30" Margin="5" FontSize="18"/>
  26. </StackPanel>
  27. <DataGrid Grid.Row="2" x:Name="DGTasks" AutoGenerateColumns="False" ItemsSource="{Binding}" RenderTransformOrigin="0.5,0.5" Margin="10,10,10,41">
  28. <DataGrid.Columns>
  29. <DataGridTextColumn Header="Задача" Binding="{Binding Title}" Width="320"/>
  30. <DataGridTextColumn Header="Статус" Binding="{Binding Description}" Width="80"/>
  31. <DataGridTextColumn Header="Исполнитель" Binding="{Binding ExecutorID}" Width="140"/>
  32. <DataGridTextColumn Header="Менеджер" Width="*"/>
  33. </DataGrid.Columns>
  34. </DataGrid>
  35. <Button Content="Добавить" Grid.Row="2" Width="150" Height="30" HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="100,5" Click="BtnAdd_Click"/>
  36. <Button Content="Удалить" Grid.Row="2" Width="150" Height="30" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="100,5" Click="BtnDel_Click"/>
  37. </Grid>
  38. </Page>