2X faster development
The ultimate UWP UI toolkit to boost your development speed.
To restrict the user to change the value beyond certain range, the Maximum and Minimum property of SfNumericUpDown can be used. Beyond these two properties value, the user could not able to enter the values. The same has been demonstrated in the following code example: Code SnippetXAML Code<Grid x:Name="Grid1" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> <syncfusion:SfNumericUpDown x:Name="sfupdown" Minimum="50" Maximum="100" Height="35" Width="250"> </syncfusion:SfNumericUpDown> </Grid>
C# Codenamespace SfNumericTextBox_sample { /// <summary> /// An empty page that can be used on its own or navigated to within a Frame. /// </summary> public sealed partial class MainPage : Page { public MainPage() { this.InitializeComponent(); SfNumericUpDown sfupdown = new SfNumericUpDown(); sfupdown.Height = 35; sfupdown.Width = 250; sfupdown.Minimum = 50; sfupdown.Maximum = 100; Grid1.Children.Add(sfupdown); } } }
|
2X faster development
The ultimate UWP UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.