共用方式為


ToolBar.MenuStyleKey 屬性

定義

取得套用至 ToolBar功能表上的 Style

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

屬性值

資源索引鍵,表示工具列上功能表的預設樣式。

範例

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

<Style x:Key="{x:Static ToolBar.MenuStyleKey}" TargetType="Menu">
  <Setter Property="FontSize" Value="14"/>
  <Setter Property="FontStyle" Value="Italic"/>
  <Setter Property="FontWeight" Value="Bold"/>
  <Setter Property="Background" Value="LightSteelBlue"/>
</Style>

備註

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

XAML 屬性使用方式

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

適用於