FactoryTemplateItemsPanel.xaml 1.2 KB

1234567891011121314151617181920212223242526
  1. <UserControl x:Class="PRSDesktop.FactoryTemplateItemsPanel"
  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:syncfusion="http://schemas.syncfusion.com/wpf"
  7. mc:Ignorable="d"
  8. d:DesignHeight="300" d:DesignWidth="300">
  9. <Grid>
  10. <Border BorderThickness="1" BorderBrush="#FFABADB3" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
  11. <ScrollViewer>
  12. <syncfusion:GridControl
  13. x:Name="Grid"
  14. HorizontalAlignment="Stretch"
  15. Margin="0,0,0,0"
  16. VerticalAlignment="Top"
  17. Height="1000"
  18. QueryCellInfo="Grid_QueryCellInfo"
  19. CommitCellInfo="Grid_CommitCellInfo"
  20. CellClick="Grid_CellClick"
  21. CurrentCellValidated="Grid_CurrentCellValidated"
  22. SizeChanged="Grid_SizeChanged" />
  23. </ScrollViewer>
  24. </Border>
  25. </Grid>
  26. </UserControl>