123456789101112131415161718192021222324252627282930313233343536 |
- <UserControl x:Class="PRSDesktop.DigitalFormsDashboard"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PRSDesktop"
- xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
- xmlns:dynamicgrid="clr-namespace:InABox.DynamicGrid;assembly=InABox.DynamicGrid"
- xmlns:wpf="clr-namespace:InABox.WPF;assembly=InABox.Wpf"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="Auto" />
- <ColumnDefinition Width="*" />
- </Grid.ColumnDefinitions>
- <wpf:QAGrid x:Name="QAGrid" Grid.Column="0" BorderThickness="0" MaxWidth="500" />
- <syncfusion:SfDataGrid
- Background="White"
- x:Name="DataGrid"
- Grid.Column="1"
- AutoGenerateColumns="True"
- AutoGeneratingColumn="DataGrid_AutoGeneratingColumn"
- RowHeight="30"
- AllowSorting="False"
- SelectionUnit="Row"
- NavigationMode="Cell"
- SelectionMode="Extended"
- Margin="0,5,5,5"
- CellDoubleTapped="DataGrid_CellDoubleTapped"
- CellTapped="DataGrid_CellTapped" />
- </Grid>
- </UserControl>
|