ToolBar.CheckBoxStyleKey Property

Definition

Gets the Style applied to check boxes on a ToolBar.

public:
 static property System::Windows::ResourceKey ^ CheckBoxStyleKey { System::Windows::ResourceKey ^ get(); };
public static System.Windows.ResourceKey CheckBoxStyleKey { get; }
static member CheckBoxStyleKey : System.Windows.ResourceKey
Public Shared ReadOnly Property CheckBoxStyleKey As ResourceKey

Property Value

A resource key that represents the default style for check boxes on the ToolBar.

Examples

The following example uses this property to apply a Style to CheckBox controls on a ToolBar.

<Style x:Key="{x:Static ToolBar.CheckBoxStyleKey}" TargetType="CheckBox">
  <Setter Property="Foreground" Value="DarkSlateBlue"/>
  <Setter Property="FontSize" Value="14"/>
  <Setter Property="HorizontalAlignment" Value="Center"/>
  <Setter Property="VerticalAlignment" Value="Center"/>
</Style>

Remarks

Use this property to change the default style of CheckBox controls on the ToolBar.

XAML Attribute Usage

<object property="{ ToolBar.CheckBoxStyleKey}"/>

Applies to