ComponentOne DateTimeEditors for UWP
C1TimeSelector Help / C1TimeSelector Quick Start / Step 1 of 3: Creating an Application with a C1TimeSelector Control
In This Topic
    Step 1 of 3: Creating an Application with a C1TimeSelector Control
    In This Topic

    In this step, you'll begin in Visual Studio to create a UWP-style application using C1TimeSelector for UWP.

    Complete the following steps:

    1. In Visual Studio, Select File | New | Project.
    2. Select Templates | Visual C# | Windows | Universal. From the templates list, select Blank App (Universal Windows). Enter a Name and click OK to create your project.
    3. Open MainPage.xaml if it isn't already open, place the cursor between the <Grid> and </Grid> tags, and click once.
    4. Navigate to the Toolbox and double-click the C1TimeSelector icon to add the control to the grid. The XAML markup resembles the following:
    Markup
    Copy Code
    <Grid x:Name="LayoutRoot">
    <Xaml:C1TimeSelector/>
    </Grid>
    

     

    You have successfully created a UWP-style application containing a C1TimeSelector control. In  the next step, you will modify the appearance of the control.

    See Also