Tutorial: Create your first Universal Windows Platform application in Visual Studio with XAML and C#

In this tutorial, as an introduction to the Visual Studio integrated development environment (IDE), you create a "Hello World" app that runs on any Windows 10 or later device. To do so, you use a Universal Windows Platform (UWP) project template, Extensible Application Markup Language (XAML), and the C# programming language.

Note

If you're happy with your current functionality in the Universal Windows Platform (UWP), then there's no need to migrate your project type to Windows App SDK. WinUI 2.x, and the Windows SDK, support UWP project types. If you would like to get started with WinUI 3 and Windows App SDK, then you can follow the steps in the Windows App SDK tutorial.

In this tutorial, you:

  • Create a project
  • Create an application
  • Run the application

Prerequisites

You need Visual Studio to complete this tutorial. Visit the Visual Studio downloads page for a free version.

Note

This tutorial requires the Blank App (Universal Windows) project template. During installation, select the Universal Windows Platform development workload:

Screenshot of the Visual Studio Installer showing the Universal Windows Platform development workload.

If you already have Visual Studio installed and need to add it, from the menu, select Tools > Get Tools and Features, or in the Create a new project window, select the Install more tools and features link.

Screenshot of the Create a new project window showing the 'Install more tools and features' link.

Create a project

First, create a Universal Windows Platform project. The project type comes with all the template files you need, before you even add anything!

  1. Open Visual Studio, and on the start window, choose Create a new project.

  2. On the Create a new project screen, enter Universal Windows in the search box, choose the C# template for Blank App (Universal Windows), and then choose Next.

    Screenshot of the 'Create a new project' dialog box with 'universal windows' entered in the search box, and the 'Blank App (Universal Windows)' project template highlighted.

  3. Give the project a name, HelloWorld, and choose Create.

    Screenshot of the 'Configure your new project' dialog box with 'HelloWorld' entered in the Project name field.

  4. Accept the default Target version and Minimum version settings in the New Universal Windows Platform Project dialog box.

    Screenshot of the New Universal Windows Platform Project dialog box showing the default Target version and Minimum version settings.

    Note

    If this is the first time you have used Visual Studio to create a UWP app, a Settings dialog box might appear. Choose Developer mode, and then choose Yes.

    Screenshot showing the UWP Settings dialog box with the option for enabling Developer Mode.

    Visual Studio installs an additional Developer Mode package for you. When the package installation is complete, close the Settings dialog box.

  1. Open Visual Studio, and on the start window, choose Create a new project.

  2. On the Create a new project screen, enter Universal Windows in the search box, choose the C# template for Blank App (Universal Windows), and then choose Next.

    Screenshot of the 'Create a new project' dialog box with 'Universal Windows' entered in the search box, and the 'Blank App (Universal Windows)' project template highlighted.

  3. Give the project a name, HelloWorld, and choose Create.

    Screenshot of the 'Configure your new project' dialog box with 'HelloWorld' entered in the Project name field.

  4. Accept the default Target version and Minimum version settings in the New Universal Windows Platform Project dialog box.

    Screenshot of the New Universal Windows Platform Project dialog box showing the default Target version and Minimum version settings.

    Note

    If this is the first time you have used Visual Studio to create a UWP app, the Enable Developer Mode for Windows dialog box appears. Select settings for developers to open Settings. Turn on Developer mode, and then choose Yes.

    Screenshot showing the UWP Settings dialog box with the option for enabling Developer Mode.

    Visual Studio installs an additional Developer Mode package for you. When the package installation is complete, close the Settings dialog box.

Create the application

It's time to start developing. Add a button control, add an action to the button, and then start the "Hello World" app to see what it looks like.

Add a button to the Design canvas

  1. In the Solution Explorer, double-click MainPage.xaml to open a split view.

    Screenshot of the Solution Explorer window showing the properties, references, assets, and files in the HelloWorld project with the file MainPage.xaml selected.

    There are two panes: The XAML Designer, which includes a design canvas, and the XAML Editor, where you can add or change code.

    Screenshot showing MainPage.xaml open in the Visual Studio IDE and the XAML Designer pane shows a blank design surface and the XAML Editor pane shows some of the XAML code.

  2. Choose Toolbox to open the Toolbox fly-out window.

    Screenshot showing the tab for the 'Toolbox' fly-out window highlighted on the left side of the XAML Designer Pane.

    If you don't see the Toolbox option, you can open it from the menu bar. To do so, choose View > Toolbar. Or, press Ctrl+Alt+X.

  3. Select the Pin icon to dock the Toolbox window.

    Screenshot showing the Pin icon highlighted in the top bar of the Toolbox window.

  4. Select the Button control and then drag it onto the design canvas.

    Screenshot showing 'Button' highlighted in the Toolbox window and a Button control on the design canvas.

    If you look at the code in the XAML Editor, you see that the Button appears there, too:

    Screenshot showing the code for the newly added Button highlighted in the XAML editor.

  1. In the Solution Explorer, double-click MainPage.xaml to open a split view.

    Screenshot of the Solution Explorer window showing the properties, references, assets, and files in the HelloWorld project. The file MainPage.xaml is selected.

    There are two panes: The XAML Designer, which includes a design canvas, and the XAML Editor, where you can add or change code.

    Screenshot showing MainPage.xaml open in the Visual Studio IDE. The XAML Designer pane shows a blank design surface and the XAML Editor pane shows some of the XAML code.

  2. Choose Toolbox to open the Toolbox fly-out window.

    Screenshot showing the tab for the 'Toolbox' fly-out window highlighted on the left side of the XAML Designer Pane.

    If you don't see the Toolbox option, you can open it from the menu bar. To do so, choose View > Toolbar. Or, press Ctrl+Alt+X.

  3. Select the Pin icon to dock the Toolbox window.

    Screenshot showing the Pin icon highlighted in the top bar of the Toolbox window.

  4. Select the Button control and then drag it onto the design canvas.

    Screenshot showing 'Button' highlighted in the Toolbox window and a Button control on the design canvas.

    If you look at the code in the XAML Editor, you see that the Button appears there, too:

    Screenshot showing the code for the newly added Button highlighted in the XAML editor.

Add a label to the button

  1. In the XAML Editor, change Button Content value from Button to Hello World!

    Screenshot showing the XAML code for the Button in the XAML editor, with the Content property changed to Hello World!

  2. Notice that the button in the XAML Designer changes, too.

    Screenshot showing the Button control on the canvas of the XAML Designer with the label of the button changed to Hello World!

  1. In the XAML Editor, change Button Content value from Button to Hello World!

    Screenshot showing the XAML code for the Button in the XAML editor with the value of the Content property changed to 'Hello World!'.

  2. Notice that the button in the XAML Designer changes, too.

    Screenshot showing the Button control on the canvas of the XAML Designer with the label of the button changed to Hello World!

Add an event handler

An event handler sounds complicated, but it's just another name for code that is called when an event happens. In this case, it adds an action to the Hello World! button.

  1. Double-click the button control on the design canvas.

  2. Edit the event handler code in MainPage.xaml.cs, the code-behind page.

    Here's where things get interesting. The default event handler looks like this:

    Screenshot showing the C# code for the default Button_Click event handler.

    Change it, so it looks like this:

    Screenshot showing the C# code for the new async Button_Click event handler.

    Here's the code to copy and paste:

    private async void Button_Click(object sender, RoutedEventArgs e)
    {
       MediaElement mediaElement = new MediaElement();
       var synth = new Windows.Media.SpeechSynthesis.SpeechSynthesizer();
       Windows.Media.SpeechSynthesis.SpeechSynthesisStream stream = await synth.SynthesizeTextToStreamAsync("Hello, World!");
       mediaElement.SetSource(stream, stream.ContentType);
       mediaElement.Play();
    }
    
  1. Double-click the button control on the design canvas.

  2. Edit the event handler code in MainPage.xaml.cs, the code-behind page.

    Here's where things get interesting. The default event handler looks like this:

    Screenshot showing the C# code for the default Button_Click event handler.

    Change it, so it looks like this:

    Screenshot showing the C# code for the new async Button_Click event handler.

    Here's the code to copy and paste:

    private async void Button_Click(object sender, RoutedEventArgs e)
    {
       MediaElement mediaElement = new MediaElement();
       var synth = new Windows.Media.SpeechSynthesis.SpeechSynthesizer();
       Windows.Media.SpeechSynthesis.SpeechSynthesisStream stream = await synth.SynthesizeTextToStreamAsync("Hello, World!");
       mediaElement.SetSource(stream, stream.ContentType);
       mediaElement.Play();
    }
    

What did we just do?

The code uses some Windows APIs to create a speech synthesis object and then gives it some text to say. For more information on using SpeechSynthesis, see System.Speech.Synthesis.

Run the application

It's time to build, deploy, and launch the "Hello World" UWP app to see what it looks and sounds like. Here's how.

  1. Use the Play button to start the application on the local machine. It has the text Local Machine.

    Screenshot showing the drop-down box open next to the Play button with 'Local Machine' selected.

    Alternatively, you can choose Debug > Start Debugging from the menu bar or press F5 to start your app.

  2. View your app, which appears soon after a splash screen disappears. The app should look similar to this figure:

    Screenshot showing the running UWP 'Hello World' application.

  3. Select the Hello World button.

    Your Windows 10 or later device literally says, "Hello, World!"

  4. To close the app, select the Stop Debugging button in the toolbar. Alternatively, choose Debug > Stop debugging from the menu bar, or press Shift+F5.

It's time to build, deploy, and launch the "Hello World" UWP app to see what it looks and sounds like. Here's how.

  1. Use the Play button (it has the text Local Machine) to start the application on the local machine.

    Screenshot showing the drop-down box open next to the Play button with 'Local Machine' selected.

    Alternatively, you can choose Debug > Start Debugging from the menu bar or press F5 to start your app.

  2. View your app, which appears soon after a splash screen disappears. The app should look similar to this image:

    Screenshot showing the running UWP 'Hello World' application.

  3. Select the Hello World button.

    Your Windows 10 or later device literally says, "Hello, World!"

  4. To close the app, select the Stop Debugging button in the toolbar. Alternatively, choose Debug > Stop debugging from the menu bar, or press Shift+F5.

Next step

Congratulations on completing this tutorial! We hope you learned some basics about UWP and the Visual Studio IDE. To learn more, continue with the following tutorial: