Nullable Value in UWP Numeric TextBox
18 Nov 20181 minute to read
The control will allow user to set Null Value. The AllowNull property needs to be set to make this behavior work. By default the property value is false.
<Page xmlns:editors="using:Syncfusion.UI.Xaml.Controls.Input">
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<editors:SfNumericTextBox x:Name="numericTextBox"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Width="200"
AllowNull="True"
Value="{x:Null}"/>
</Grid>
</Page>