Having trouble getting help?
Contact Support
Contact Support
AutoReverse in UWP Numeric UpDown (SfNumericUpDown)
10 May 20211 minute to read
While incrementing, the control will start from Minimum once it reaches the Maximum and vice-versa.
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<syncfusion:SfNumericUpDown VerticalAlignment="Center" x:Name="numericUpDown"
HorizontalAlignment="Center"
Width="200"
Maximum="100"
Minimum="0"
AutoReverse="True"/>
</Grid>
numericUpDown.AutoReverse = true;
numericUpDown.AutoReverse = True