我找不到ControlTemplate
. CheckBox
有谁知道如何找到它?我只能找到MSDN 上的 SilverLight 默认复选框模板。
MSDN 有一个用于 WPF 复选框示例的自定义控件模板,它使用 X 而不是复选标记。我正在专门寻找 WPF 标配的默认复选标记样式——我只是找不到它的 XAML。
我也试过保存模板XamlWriter
无济于事。从 WPF 控件模板示例下载简单样式模板也只使用 X 而不是经典复选标记。
我找不到ControlTemplate
. CheckBox
有谁知道如何找到它?我只能找到MSDN 上的 SilverLight 默认复选框模板。
MSDN 有一个用于 WPF 复选框示例的自定义控件模板,它使用 X 而不是复选标记。我正在专门寻找 WPF 标配的默认复选标记样式——我只是找不到它的 XAML。
我也试过保存模板XamlWriter
无济于事。从 WPF 控件模板示例下载简单样式模板也只使用 X 而不是经典复选标记。
我还没有看到任何其他主题的默认样式,但可以在线获得Classic,但如果您碰巧找到它们,请在此处发回 :) 我认为 MSDN 上的模板通常是Classic主题。
您可以使用 Expression Blend 来获取它,您可以在此处下载试用版。
选择CheckBox
,转到对象 -> 编辑样式 -> 编辑副本。
假设您喜欢 windows 7 ( aero ) 风格,这里是
<SolidColorBrush x:Key="CheckBoxFillNormal" Color="#F4F4F4"/>
<SolidColorBrush x:Key="CheckBoxStroke" Color="#8E8F8F"/>
<Style x:Key="EmptyCheckBoxFocusVisual">
<Setter Property="Control.Template">
<Setter.Value>
<ControlTemplate>
<Rectangle Margin="1" SnapsToDevicePixels="true" Stroke="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}" StrokeThickness="1" StrokeDashArray="1 2"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="CheckRadioFocusVisual">
<Setter Property="Control.Template">
<Setter.Value>
<ControlTemplate>
<Rectangle Margin="14,0,0,0" SnapsToDevicePixels="true" Stroke="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}" StrokeThickness="1" StrokeDashArray="1 2"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="CheckBoxStyle1" TargetType="{x:Type CheckBox}">
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>
<Setter Property="Background" Value="{StaticResource CheckBoxFillNormal}"/>
<Setter Property="BorderBrush" Value="{StaticResource CheckBoxStroke}"/>
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="FocusVisualStyle" Value="{StaticResource EmptyCheckBoxFocusVisual}"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type CheckBox}">
<BulletDecorator Background="Transparent" SnapsToDevicePixels="true">
<BulletDecorator.Bullet>
<Microsoft_Windows_Themes:BulletChrome BorderBrush="{TemplateBinding BorderBrush}" Background="{TemplateBinding Background}" IsChecked="{TemplateBinding IsChecked}" RenderMouseOver="{TemplateBinding IsMouseOver}" RenderPressed="{TemplateBinding IsPressed}"/>
</BulletDecorator.Bullet>
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
</BulletDecorator>
<ControlTemplate.Triggers>
<Trigger Property="HasContent" Value="true">
<Setter Property="FocusVisualStyle" Value="{StaticResource CheckRadioFocusVisual}"/>
<Setter Property="Padding" Value="4,0,0,0"/>
</Trigger>
<Trigger Property="IsEnabled" Value="false">
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
获取所有 WPF 控件控件模板的另一种方法是使用这个奇妙的应用程序:http ://www.sellsbrothers.com/posts/details/2091