gpt4 book ai didi

wpf - 是否可以同时将 WPF 样式应用于不同类型?

转载 作者:行者123 更新时间:2023-12-04 19:31:13 25 4
gpt4 key购买 nike

我想创建一种可以应用于不同控件类型的样式。像这样的东西:

<ToolBar>
<ToolBar.Resources>
<Style TargetType="Control">
<Setter Property="Margin" Value="1"/>
<Setter Property="Padding" Value="0"/>
</Style>
</ToolBar.Resources>

<ComboBox .../>
<Button .../>
</ToolBar>

它应该适用于 ComboBoxButton .但它不像我在这里写的那样工作。

这有可能吗?仅针对这些类的祖先,例如 Control ?如果没有,将通用设置应用于一堆控件的最佳方法是什么?

最佳答案

更新

this讨论一个有趣的方法

this

您正在创建的样式仅针对 Control 而不是从 Control 派生的元素。当您不设置 x:Key 时,您隐式地将 x:Key 设置为 TargetType,因此如果 TargetType="Control",则 x:Key="Control"。我认为没有任何直接的方法可以做到这一点。

您的选择是

<Style x:Key="ControlBaseStyle" TargetType="Control">  
<Setter Property="Margin" Value="1"/>
<Setter Property="Padding" Value="0"/>
</Style>

例如,定位所有按钮和组合框
<Style TargetType="{x:Type Button}" BasedOn="{StaticResource ControlBaseStyle}"/> 
<Style TargetType="{x:Type ComboBox}" BasedOn="{StaticResource ControlBaseStyle}"/>

或者直接在控件上使用样式
<Button Style="{StaticResource ControlBaseStyle}" ...>
<ComboBox Style="{StaticResource ControlBaseStyle}" ...>

关于wpf - 是否可以同时将 WPF 样式应用于不同类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4200513/

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