SetoutTemplateList.xaml 1.1 KB

12345678910111213141516171819
  1. <UserControl x:Class="PRSDesktop.SetoutTemplateList"
  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 x:Name="Grid" HorizontalAlignment="Stretch" Margin="0,0,0,0"
  13. VerticalAlignment="Top" Height="1000" QueryCellInfo="Grid_QueryCellInfo"
  14. CommitCellInfo="Grid_CommitCellInfo" CellClick="Grid_CellClick"
  15. SizeChanged="Grid_SizeChanged" />
  16. </ScrollViewer>
  17. </Border>
  18. </Grid>
  19. </UserControl>