SimpleItemsControl.xaml 785 B

1234567891011121314151617
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:hc="clr-namespace:HandyControl.Controls">
  4. <Style TargetType="hc:SimpleItemsControl">
  5. <Setter Property="Template">
  6. <Setter.Value>
  7. <ControlTemplate TargetType="hc:SimpleItemsControl">
  8. <Border Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}">
  9. <StackPanel x:Name="PART_Panel" />
  10. </Border>
  11. </ControlTemplate>
  12. </Setter.Value>
  13. </Setter>
  14. </Style>
  15. </ResourceDictionary>