Having trouble getting help?
Contact Support
Contact Support
Percent Display Mode in UWP Numeric UpDown (SfNumericUpDown)
10 May 20211 minute to read
With the PercentDisplayMode property, you can specify how to display numeric data in Percent mode. It provides the following options:
- Value: Displays the value with percentage symbol.
- Compute: Displays the computed value with percentage symbol.
The following code example and screen shots illustrate the usage of the PercentDisplayMode property.
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<syncfusion:SfNumericUpDown x:Name="numericUpDown" HorizontalAlignment="Center" VerticalAlignment="Center" Width="200" Value="5" FormatString="P" PercentDisplayMode="Value"/>
</Grid>
numericUpDown.PercentDisplayMode = Syncfusion.UI.Xaml.Controls.Input.PercentDisplayMode.Value;
numericUpDown.PercentDisplayMode = Syncfusion.UI.Xaml.Controls.Input.PercentDisplayMode.Value
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<syncfusion:SfNumericUpDown HorizontalAlignment="Center" x:Name="numericUpDown"
VerticalAlignment="Center" Width="200" Value="5" FormatString="P"
PercentDisplayMode="Compute"/>
</Grid>
numericUpDown.PercentDisplayMode = Syncfusion.UI.Xaml.Controls.Input.PercentDisplayMode.Compute;
numericUpDown.PercentDisplayMode = Syncfusion.UI.Xaml.Controls.Input.PercentDisplayMode.Compute