1234567891011121314151617181920212223242526 |
- <UserControl x:Class="PRSDesktop.FactoryTemplateItemsPanel"
- 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:syncfusion="http://schemas.syncfusion.com/wpf"
- mc:Ignorable="d"
- d:DesignHeight="300" d:DesignWidth="300">
- <Grid>
- <Border BorderThickness="1" BorderBrush="#FFABADB3" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
- <ScrollViewer>
- <syncfusion:GridControl
- x:Name="Grid"
- HorizontalAlignment="Stretch"
- Margin="0,0,0,0"
- VerticalAlignment="Top"
- Height="1000"
- QueryCellInfo="Grid_QueryCellInfo"
- CommitCellInfo="Grid_CommitCellInfo"
- CellClick="Grid_CellClick"
- CurrentCellValidated="Grid_CurrentCellValidated"
- SizeChanged="Grid_SizeChanged" />
- </ScrollViewer>
- </Border>
- </Grid>
- </UserControl>
|