Changing the arrow color in WPF Toolkit NumericUpDown control?

后端 未结 2 1956
夕颜
夕颜 2021-01-22 05:55

Is there a way with a style to target the arrows in the NumericUpDown control from the WPF Toolkit? I want to change the color of the arrows.

2条回答
  •  有刺的猬
    2021-01-22 06:46

    You can override the GlyphNormalForeground color.

    you will have to add the Xceed.Wpf.Toolkit.Themes xmnls namespace to your xaml. (or WpfToolkit.Themes if your using the old version)

    Example:

    
        
            
                
            
        
    
    

    Result:

    enter image description here

提交回复
热议问题