Is it possible to initialize NumericUpDown with null, so that the NullValue is shown when the NumericUpDown is shown first time?
NullValue is shown correctly when a user deletes the content of the NumericUpDown, but when I initialize the view model's property with null NumericUpDown shows 1 (my minimal value).
My XAML code is the following:
NullValue is shown correctly when a user deletes the content of the NumericUpDown, but when I initialize the view model's property with null NumericUpDown shows 1 (my minimal value).
My XAML code is the following:
<t:RadNumericUpDown ValueFormat="Numeric" Minimum="1" Maximum="6" NumberDecimalDigits="0" IsInteger="True" IsEditable="True" Value="{Binding Priority, UpdateSourceTrigger=PropertyChanged}" Margin="4" NullValue="None"></t:RadNumericUpDown>