Articles in this section
Category / Section

How to disable the negative and zero foreground color in WPF UpDown?

1 min read

You can disable the Negative and Zero value foreground color by setting EnableNegativeColors and ApplyZeroColor properties to False respectively in WPF UpDown control.

XAML

<syncfusion:UpDown Name="updown"  EnableNegativeColors="False" ApplyZeroColor="False" />

C#

updown.EnableNegativeColors = false;
updown.ApplyZeroColor = false;

The following screenshot displays how to disable the negative foreground color in UpDown.

Disable negative and zero value foreground in WPF UpDown

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied