gpt4 book ai didi

wpf - 为什么不应用以下 WPF 样式?

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

为什么以下样式不起作用?我在其他地方有完全相同的结构和不同的控件,它可以工作。

使用 TargetType="{x:Type Separator}"而不是 TargetType="Separator"也不行。不动Style XAML 层次结构中的上层。我可以避免使用 x:Key="styleName"Style="{StaticResource styleName}" ?

但更重要的是,我试图理解为什么这种样式绑定(bind)并不总是有效。

<ToolBar Height="25">
<ToolBar.Resources>
<Style TargetType="Separator">
<Setter Property="Margin" Value="15"/>
</Style>
<Style TargetType="RadioButton">
<Setter Property="Margin" Value="10"/>
<Setter Property="Width" Value="50"/>
</Style>
</ToolBar.Resources>

<RadioButton Content="A"/> <!-- NOT APPLIED HERE -->
<Separator/> <!-- NOT APPLIED HERE -->
<RadioButton Content="B"/> <!-- NOT APPLIED HERE -->
</ToolBar>

最佳答案

WPF 的工具栏用它的子控件做了一些时髦的事情。与其他容器不同,它不像定义适用于类型的样式那么简单。
看看这篇博文,了解一些可能有帮助的信息。 Styling controls on a ToolBar .

关于wpf - 为什么不应用以下 WPF 样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4251405/

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