4

ControlTemplateのデフォルトのWPFが見つかりませんCheckBox。誰かがそれを見つける方法を知っていますか?私が見つけることができるのは、MSDNのSilverLightのデフォルトのチェックボックステンプレートだけです。

MSDNには、チェックマークの代わりにXを使用するWPFチェックボックスの例のカスタムコントロールテンプレートがあります。特に、WPFに標準で付属しているデフォルトのチェックマークスタイルを探しています。XAMLが見つかりません。

また、無駄に使用してテンプレートを保存しようとしXamlWriterました。WPFコントロールテンプレートサンプルからシンプルスタイルテンプレートをダウンロードする場合も、従来のチェックマークの代わりにXを使用します。

4

2 に答える 2

5

他のテーマのデフォルトのスタイルは見たことがありませんが、Classicはオンラインで入手できますが、見つけた場合は、ここに投稿してください:)MSDNにあるテンプレートは通常Classicテーマだと思います。

Expression Blendを使用して入手できます。ここから、試用版をダウンロードできます。
を選択しCheckBox、[オブジェクト]->[スタイルの編集]->[コピーの編集]に移動します。

あなたがウィンドウズ7(エアロ)スタイルを追いかけていると仮定すると、ここにあります

<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>
于 2012-10-18T21:18:43.180 に答える
1

すべてのWPFコントロールコントロールテンプレートを取得する別の方法は、この素晴らしいアプリケーションを使用することです:http ://www.sellsbrothers.com/posts/details/2091

于 2012-10-19T07:30:47.107 に答える