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

    In this step, you'll begin in Visual Studio to create a UWP-style application using TimeEditor 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 C1TimeEditor icon to add the control to the grid. The XAML markup resembles the following:
    Markup
    Copy Code
    <Grid x:Name="LayoutRoot">
    <DateTimeEditors:C1TimeEditor></DateTimeEditors:C1TimeEditor>
    </Grid>
    

    You have completed the first step of the TimeEditor for UWP quick start. In this step, you created a project and added a C1TimeEditor control to it. In the next step, you'll customize the control.

    See Also