gpt4 book ai didi

wpf - 我可以向样式添加资源或 ResourceDictionary 吗?

转载 作者:行者123 更新时间:2023-12-04 12:00:35 24 4
gpt4 key购买 nike

是否可以在样式中定义 ResourceDictionary?

例如,假设我想为 StackPanels 设置两种不同的样式,一种是我希望所有按钮都是蓝色的,另一种是我希望它们是红色的。这可能吗?

就像是

<Style x:Key="RedButtonsPanel" TargetType="{x:Type StackPanel}">
<Setter Property="Orientation" Value="Horizontal" />
<Setter Property="StackPanel.Resources">
<Setter.Value>
<ResourceDictionary>
<Style TargetType="{x:Type Button}">
<Setter Property="Background" Value="Red" />
</Style>
</ResourceDictionary>
</Setter.Value>
</Setter>
</Style>

上面的代码失败了,错误是关于 Setter 的属性值不能为空(即使它显然不是空的)。

我可以做类似的事情
<ResourceDictionary x:Key="RedButtons">
<Style TargetType="{x:Type Button}">
<Setter Property="Width" Value="100" />
<Setter Property="Background" Value="Red" />
</Style>
</ResourceDictionary>

<StackPanel Resources={StaticResource RedButtons} />

但是我想知道是否有办法将 ResourceDictionary 合并到样式中。

最佳答案

StackPanel.Resources不是 DependencyProperty因此我不相信您将能够在样式中设置该属性。

关于wpf - 我可以向样式添加资源或 ResourceDictionary 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4249833/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com