PinBoxBaseStyle.xaml 903 B

12345678910111213141516171819
  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 x:Key="PinBoxBaseStyle" TargetType="hc:PinBox">
  5. <Setter Property="Focusable" Value="False"/>
  6. <Setter Property="ItemMargin" Value="4,0"/>
  7. <Setter Property="ItemWidth" Value="{StaticResource DefaultControlHeight}"/>
  8. <Setter Property="ItemHeight" Value="{StaticResource DefaultControlHeight}"/>
  9. <Setter Property="Template">
  10. <Setter.Value>
  11. <ControlTemplate TargetType="hc:PinBox">
  12. <UniformGrid Name="PART_Panel" Columns="{TemplateBinding Length}" Rows="1"/>
  13. </ControlTemplate>
  14. </Setter.Value>
  15. </Setter>
  16. </Style>
  17. </ResourceDictionary>