共用方式為


ToolBar.CheckBoxStyleKey 屬性

定義

取得套用至 ToolBar上複選框的 Style

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

屬性值

資源索引鍵,表示 ToolBar上複選框的默認樣式。

範例

下列範例會使用這個屬性,將 Style 套用至 ToolBar上的 CheckBox 控件。

<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>

備註

使用這個屬性來變更 ToolBarCheckBox 控件的預設樣式。

XAML 屬性使用方式

< 物件屬性=“{ToolBar.CheckBoxStyleKey}"/>

適用於