Getting Started with UWP Domain UpDown (SfDomainUpDown)
23 Jun 20231 minute to read
Namespace: Syncfusion.UI.Xaml.Controls.Input
Assembly: Syncfusion.SfInput.UWP
Dependent assembly: Syncfusion.SfShared.UWP
The following code sample shows how to create the SfDomainUpDown from code-behind and XAML:
<Page xmlns:editors="using:Syncfusion.UI.Xaml.Controls.Input">
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<editors:SfDomainUpDown x:Name="domainUpDown"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Width="200"/>
</Grid>
</Page>
SfDomainUpDown domainUpDown = new SfDomainUpDown();
Dim domainUpDown As New SfDomainUpDown()
NOTE
You can refer to our UWP Domain Updown feature tour page to know about its other groundbreaking feature representations. You can also explore our UWP Domain Updown example that shows you how to render and configure the Domain Updown in UWP.