有没有一种样式可以从 WPF 工具包中定位 NumericUpDown 控件中的箭头?我想改变箭头的颜色。
问问题
2741 次
2 回答
1
要添加 Xceed.Wpf.Toolkit.Themes 命名空间,请使用此 xmlns:theme="clr-namespace:Xceed.Wpf.Toolkit.Themes;assembly=Xceed.Wpf.Toolkit"
于 2014-01-13T14:19:26.217 回答
1
您可以覆盖GlyphNormalForeground
颜色。
您必须将Xceed.Wpf.Toolkit.Themes
xmnls 命名空间添加到您的 xaml。(或 WpfToolkit.Themes 如果您使用旧版本)
例子:
<Grid>
<wpfToolkit:IntegerUpDown Margin="37,25,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" >
<wpfToolkit:IntegerUpDown.Style>
<Style TargetType="{x:Type wpfToolkit:IntegerUpDown}">
<Style.Resources>
<SolidColorBrush x:Key="{x:Static theme:ResourceKeys.GlyphNormalForegroundKey}" Color="Red"/>
</Style.Resources>
</Style>
</wpfToolkit:IntegerUpDown.Style>
</wpfToolkit:IntegerUpDown>
</Grid>
结果:
于 2013-02-14T00:26:58.547 回答