1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:hc="clr-namespace:HandyControl.Controls">
- <Style BasedOn="{StaticResource CheckComboBoxBaseStyle}" TargetType="hc:CheckComboBox"/>
- <Style x:Key="CheckComboBoxItem.Small" BasedOn="{StaticResource CheckComboBoxItemBaseStyle}" TargetType="hc:CheckComboBoxItem">
- <Setter Property="Padding" Value="6,0" />
- <Setter Property="MinHeight" Value="20" />
- </Style>
- <Style x:Key="Tag4CheckComboBoxStyle.Small" BasedOn="{StaticResource Tag4CheckComboBoxStyle}" TargetType="hc:Tag">
- <Setter Property="Padding" Value="6,0,4,0"/>
- </Style>
- <Style x:Key="CheckComboBox.Small" BasedOn="{StaticResource CheckComboBoxBaseStyle}" TargetType="hc:CheckComboBox">
- <Setter Property="TagStyle" Value="{StaticResource Tag4CheckComboBoxStyle.Small}"/>
- <Setter Property="TagSpacing" Value="2" />
- <Setter Property="ItemContainerStyle" Value="{StaticResource CheckComboBoxItem.Small}" />
- <Setter Property="MinHeight" Value="20"/>
- <Setter Property="Padding" Value="6,2"/>
- </Style>
- <Style x:Key="CheckComboBoxExtend" BasedOn="{StaticResource CheckComboBoxExtendBaseStyle}" TargetType="hc:CheckComboBox"/>
- <Style x:Key="CheckComboBoxExtend.Small" BasedOn="{StaticResource CheckComboBoxExtend}" TargetType="hc:CheckComboBox">
- <Setter Property="TagStyle" Value="{StaticResource Tag4CheckComboBoxStyle.Small}"/>
- <Setter Property="TagSpacing" Value="2" />
- <Setter Property="ItemContainerStyle" Value="{StaticResource CheckComboBoxItem.Small}" />
- <Setter Property="hc:InfoElement.MinContentHeight" Value="20"/>
- <Setter Property="hc:TitleElement.MarginOnTheLeft" Value="0,3,6,0"/>
- <Setter Property="hc:TitleElement.MarginOnTheTop" Value="6,0,0,1" />
- <Setter Property="MinHeight" Value="20"/>
- <Setter Property="Padding" Value="6,2"/>
- </Style>
- <Style x:Key="CheckComboBoxPlus" BasedOn="{StaticResource CheckComboBoxPlusBaseStyle}" TargetType="hc:CheckComboBox"/>
- <Style x:Key="CheckComboBoxPlus.Small" BasedOn="{StaticResource CheckComboBoxPlus}" TargetType="hc:CheckComboBox">
- <Setter Property="TagStyle" Value="{StaticResource Tag4CheckComboBoxStyle.Small}"/>
- <Setter Property="TagSpacing" Value="2" />
- <Setter Property="ItemContainerStyle" Value="{StaticResource CheckComboBoxItem.Small}" />
- <Setter Property="hc:InfoElement.MinContentHeight" Value="20"/>
- <Setter Property="hc:TitleElement.MarginOnTheLeft" Value="0,3,6,0"/>
- <Setter Property="hc:TitleElement.MarginOnTheTop" Value="6,0,0,1" />
- <Setter Property="MinHeight" Value="20"/>
- <Setter Property="Padding" Value="6,2"/>
- </Style>
- </ResourceDictionary>
|