DigitalFormsDashboard.xaml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <UserControl x:Class="PRSDesktop.DigitalFormsDashboard"
  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:PRSDesktop"
  7. xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
  8. xmlns:dynamicgrid="clr-namespace:InABox.DynamicGrid;assembly=InABox.DynamicGrid"
  9. xmlns:wpf="clr-namespace:InABox.WPF;assembly=InABox.Wpf"
  10. mc:Ignorable="d"
  11. d:DesignHeight="450" d:DesignWidth="800">
  12. <Grid>
  13. <Grid.ColumnDefinitions>
  14. <ColumnDefinition Width="Auto" />
  15. <ColumnDefinition Width="*" />
  16. </Grid.ColumnDefinitions>
  17. <wpf:QAGrid x:Name="QAGrid" Grid.Column="0" BorderThickness="0" MaxWidth="500" />
  18. <syncfusion:SfDataGrid
  19. Background="White"
  20. x:Name="DataGrid"
  21. Grid.Column="1"
  22. AutoGenerateColumns="True"
  23. AutoGeneratingColumn="DataGrid_AutoGeneratingColumn"
  24. RowHeight="30"
  25. AllowSorting="False"
  26. SelectionUnit="Row"
  27. NavigationMode="Cell"
  28. SelectionMode="Extended"
  29. Margin="0,5,5,5"
  30. CellDoubleTapped="DataGrid_CellDoubleTapped"
  31. CellTapped="DataGrid_CellTapped" />
  32. </Grid>
  33. </UserControl>