DigitalFormsDashboard.xaml 1.2 KB

12345678910111213141516171819202122232425
  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.Wpf"
  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. <local:DigitalFormsDashboardGrid x:Name="Grid" Grid.Column="1"
  19. OnSelectItem="Grid_OnSelectItem"
  20. OnCellDoubleClick="Grid_OnCellDoubleClick"/>
  21. </Grid>
  22. </UserControl>