在我的应用程序中,我有一堆ContextMenus,我希望它们都具有相同的外观,这是非常基本的,但它使用资源来设置HighlightBrushKey和ControlBrushKey,它们是SystemColors。它看起来像这样:
<ContextMenu Padding="0" Background="Transparent">
<ContextMenu.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent"/>
<SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="Transparent"/>
</ContextMenu.Resources>
<MenuItem Header="Delete"/>
<MenuItem Header="Modify"/>
</ContextMenu>
这里没有什么特别的东西,但是我找不到一种方式把它放在一个风格中,我想要做的是:
<Style TargetType="ContextMenu">
<Setter Property="Padding" Value="0" />
<Setter Property="Background" Value="Transparent" />
<Setter Property="Resources">
<Setter.Value>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent" />
<SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="Transparent" />
</Setter.Value>
</Setter>
</Style>
如何将资源放入风格? (如果可能的话......)
谢谢!
答案 0 :(得分:3)
您无法通过setter设置Resources
,因为它不是依赖项属性。将相关资源添加到Style.Resources
或覆盖Template
并在其中添加资源。但范围可能有限。
<Style TargetType="ContextMenu">
<Style.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent" />
<SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="Transparent" />
</Style.Resources>
<Setter Property="Padding" Value="0" />
<Setter Property="Background" Value="Transparent" />
</Style>