是否有一种方式可以使用样式来定位WPF Toolkit中NumericUpDown控件中的箭头?我想改变箭头的颜色。
答案 0 :(得分: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>
结果:
答案 1 :(得分:1)
要添加Xceed.Wpf.Toolkit.Themes命名空间,请使用此选项 的xmlns:主题= “CLR-名称空间:Xceed.Wpf.Toolkit.Themes;装配= Xceed.Wpf.Toolkit”