ItemsPanelTemplate.xaml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <ItemsPanelTemplate x:Key="UniformHorizontalItemsPanelTemplate">
  4. <UniformGrid FocusVisualStyle="{x:Null}" Rows="1"/>
  5. </ItemsPanelTemplate>
  6. <ItemsPanelTemplate x:Key="UniformVerticalItemsPanelTemplate">
  7. <UniformGrid FocusVisualStyle="{x:Null}" Columns="1"/>
  8. </ItemsPanelTemplate>
  9. <ItemsPanelTemplate x:Key="StackHorizontalItemsPanelTemplate">
  10. <StackPanel FocusVisualStyle="{x:Null}" Orientation="Horizontal"/>
  11. </ItemsPanelTemplate>
  12. <ItemsPanelTemplate x:Key="StackVerticalItemsPanelTemplate">
  13. <StackPanel FocusVisualStyle="{x:Null}"/>
  14. </ItemsPanelTemplate>
  15. <ItemsPanelTemplate x:Key="VirtualizingStackHorizontalItemsPanelTemplate">
  16. <VirtualizingStackPanel FocusVisualStyle="{x:Null}" Orientation="Horizontal" />
  17. </ItemsPanelTemplate>
  18. <ItemsPanelTemplate x:Key="VirtualizingStackVerticalItemsPanelTemplate">
  19. <VirtualizingStackPanel FocusVisualStyle="{x:Null}" />
  20. </ItemsPanelTemplate>
  21. <ItemsPanelTemplate x:Key="WrapHorizontalItemsPanelTemplate">
  22. <WrapPanel FocusVisualStyle="{x:Null}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  23. </ItemsPanelTemplate>
  24. <ItemsPanelTemplate x:Key="WrapVerticalItemsPanelTemplate">
  25. <WrapPanel FocusVisualStyle="{x:Null}" Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  26. </ItemsPanelTemplate>
  27. <ItemsPanelTemplate x:Key="DockItemsPanelTemplate">
  28. <DockPanel FocusVisualStyle="{x:Null}" LastChildFill="True"/>
  29. </ItemsPanelTemplate>
  30. </ResourceDictionary>