Getting Started with UWP Domain UpDown

18 Nov 20181 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 UWP Domain UpDown 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()

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 the control is rendered and configured.