123456789101112131415161718192021222324252627282930313233343536 |
- <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 WatermarkTextBoxBaseStyle}" TargetType="hc:WatermarkTextBox"/>
- <Style BasedOn="{StaticResource TextBoxBaseStyle}" TargetType="TextBox"/>
- <Style x:Key="TextBox.Small" BasedOn="{StaticResource TextBoxBaseStyle}" TargetType="TextBox">
- <Setter Property="MinHeight" Value="20"/>
- <Setter Property="Padding" Value="6,0" />
- </Style>
- <Style x:Key="TextBoxExtend" BasedOn="{StaticResource TextBoxExtendBaseStyle}" TargetType="TextBox"/>
- <Style x:Key="TextBoxExtend.Small" BasedOn="{StaticResource TextBoxExtend}" TargetType="TextBox">
- <Setter Property="hc:InfoElement.MinContentHeight" Value="20"/>
- <Setter Property="hc:InfoElement.ContentHeight" Value="20"/>
- <Setter Property="hc:TitleElement.MarginOnTheLeft" Value="0,3,6,0"/>
- <Setter Property="hc:TitleElement.MarginOnTheTop" Value="6,0,0,1" />
- <Setter Property="Padding" Value="6,0" />
- <Setter Property="MinHeight" Value="20"/>
- </Style>
- <Style BasedOn="{StaticResource TextBoxPlusBaseStyle}" TargetType="hc:TextBox"/>
- <Style x:Key="TextBoxPlus.Small" BasedOn="{StaticResource TextBoxPlusBaseStyle}" TargetType="hc:TextBox">
- <Setter Property="hc:InfoElement.MinContentHeight" Value="20"/>
- <Setter Property="hc:InfoElement.ContentHeight" Value="20"/>
- <Setter Property="hc:TitleElement.MarginOnTheLeft" Value="0,3,6,0"/>
- <Setter Property="hc:TitleElement.MarginOnTheTop" Value="6,0,0,1" />
- <Setter Property="Padding" Value="6,0" />
- <Setter Property="MinHeight" Value="20"/>
- </Style>
- </ResourceDictionary>
|