How to disable the negative and zero foreground color in WPF UpDown?
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.
![]()