抱歉,我在WPF样式方面还是个新手。我有一个ButtonSpinner控件,我使用适当的属性设置了它的宽度和高度:
<xctk:ButtonSpinner Width="200" SpinnerWidth="100" SpinnerHeight="100">
</xctk:ButtonSpinner>
它的工作原理是,向上微调器和向下微调器的宽度和高度相应增加。
但是为什么我不能在将它应用于IntegerUpDown控件内部的ButtonSpinner时做同样的事情呢?(IntegerUpDown主题:https://github.com/xceedsoftware/wpftoolkit/blob/master/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/NumericUpDown/Themes/Generic.xaml):
<xctk:IntegerUpDown Value="1564" Width="200" Height="100">
<xctk:IntegerUpDown.Resources>
<Style TargetType="{x:Type xctk:ButtonSpinner}">
<Setter Property="SpinnerWidth" Value="100"/>
<Setter Property="SpinnerHeight" Value="100"/>
</Style>
</xctk:IntegerUpDown.Resources>
</xctk:IntegerUpDown>
看起来还是一样。我错过什么了吗?
1条答案
按热度按时间jtw3ybtb1#
添加到控件的
Resources
属性的隐式Style
是否应用于该控件的子元素取决于控件模板的定义方式。如果模板如下例所示显式设置子控件的
Style
属性,则不会应用Resources
中的隐式Style
:此外,如果模板设置子控件的依赖项属性的本地值,则不能使用
Style
设置此属性,因为本地值将precedence替换为由Style
的Setter
指定的值。