ComponentOne Basic Library for UWP
Step 1 of 3: Creating a C1TabControl Application
UWP Edition Basic Library > TabControl for UWP > TabControl for UWP Quick Start > Step 1 of 3: Creating a C1TabControl Application

In this step, you'll create a Universal Windows application using TabControl for UWP.

Complete the following steps:

  1. In Visual Studio select File | New | Project.
  2. In the New Project dialog box, select Templates | Visual C# | Windows | Universal. From the templates list, select Blank App (Universal Windows).
  3. Right-click the project name in the Solution Explorer and select Add Reference.
  4. In the Reference Manager dialog box, expand Universal Windows and select Extensions; you should see the UWP assemblies in the center pane. Select C1.UWP and click OK.
  5. Open MainPage.xaml if it isn't already open, and add the following markup within the <Page> tag:
Markup
Copy Code
xmlns:c1="using:C1.Xaml"

This adds required references to the project.

You have completed the first step of the TabControl for UWP quick start. In this step, you created a Universal Windows project. In the next step, you will add tabs and tab pages to the control.

See Also