108 lines
6.1 KiB
XML
108 lines
6.1 KiB
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:WPF="clr-namespace:WPF">
|
|
|
|
<Style TargetType="TextBox">
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type TextBox}">
|
|
<Border x:Name="border" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" SnapsToDevicePixels="True">
|
|
<ScrollViewer x:Name="PART_ContentHost" Focusable="false" HorizontalScrollBarVisibility="Hidden" VerticalScrollBarVisibility="Hidden"/>
|
|
</Border>
|
|
<ControlTemplate.Triggers>
|
|
<Trigger Property="IsEnabled" Value="false">
|
|
<Setter Property="Opacity" TargetName="border" Value="0.56"/>
|
|
</Trigger>
|
|
<Trigger Property="IsMouseOver" Value="true">
|
|
<Setter Property="BorderBrush" TargetName="border" Value="#FF7EB4EA"/>
|
|
</Trigger>
|
|
<Trigger Property="IsFocused" Value="true">
|
|
<Setter Property="BorderBrush" TargetName="border" Value="{x:Static WPF:WPF.ThemeBrush}"/>
|
|
</Trigger>
|
|
</ControlTemplate.Triggers>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
<Style TargetType="RadioButton">
|
|
<Setter Property="Padding" Value="6 0 0 0" />
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="RadioButton">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition x:Name="LeftCol" Width="18" />
|
|
<ColumnDefinition x:Name="RightCol" Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid x:Name="PART_CHECKBOX">
|
|
<Ellipse
|
|
x:Name="normal"
|
|
Width="18"
|
|
Height="18"
|
|
Fill="{Binding Path=Background, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}}"
|
|
Stroke="{x:Static WPF:WPF.ThemeBrush}"
|
|
StrokeThickness="2" />
|
|
<Ellipse
|
|
x:Name="Checked1"
|
|
Width="8"
|
|
Height="8"
|
|
Fill="{TemplateBinding Foreground}"
|
|
Opacity="0" />
|
|
<Ellipse
|
|
x:Name="disabled"
|
|
Width="18"
|
|
Height="18"
|
|
Fill="{DynamicResource SemiTransparentWhiteBrush}"
|
|
Opacity="0"
|
|
StrokeThickness="{TemplateBinding BorderThickness}" />
|
|
</Grid>
|
|
<ContentPresenter
|
|
x:Name="contentPresenter"
|
|
Grid.Column="1"
|
|
Margin="{TemplateBinding Padding}"
|
|
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
|
|
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
|
|
Content="{TemplateBinding Content}"
|
|
ContentStringFormat="{TemplateBinding ContentStringFormat}"
|
|
ContentTemplate="{TemplateBinding ContentTemplate}"
|
|
ContentTemplateSelector="{TemplateBinding ContentTemplateSelector}"
|
|
RecognizesAccessKey="True" />
|
|
<VisualStateManager.VisualStateGroups>
|
|
<VisualStateGroup x:Name="CommonStates">
|
|
<VisualState x:Name="Normal" />
|
|
<VisualState x:Name="Disabled">
|
|
<Storyboard>
|
|
<DoubleAnimation
|
|
Storyboard.TargetName="contentPresenter"
|
|
Storyboard.TargetProperty="(UIElement.Opacity)"
|
|
To=".55"
|
|
Duration="0" />
|
|
<DoubleAnimation
|
|
Storyboard.TargetName="disabled"
|
|
Storyboard.TargetProperty="(UIElement.Opacity)"
|
|
To="1"
|
|
Duration="0" />
|
|
</Storyboard>
|
|
</VisualState>
|
|
</VisualStateGroup>
|
|
<VisualStateGroup x:Name="CheckStates">
|
|
<VisualState x:Name="Checked">
|
|
<Storyboard>
|
|
<DoubleAnimation
|
|
Storyboard.TargetName="Checked1"
|
|
Storyboard.TargetProperty="(UIElement.Opacity)"
|
|
To="1"
|
|
Duration="0" />
|
|
</Storyboard>
|
|
</VisualState>
|
|
<VisualState x:Name="Unchecked" />
|
|
<VisualState x:Name="Indeterminate" />
|
|
</VisualStateGroup>
|
|
</VisualStateManager.VisualStateGroups>
|
|
</Grid>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Setter Property="VerticalContentAlignment" Value="Center" />
|
|
</Style>
|
|
</ResourceDictionary> |