Build your first .NET MAUI app for Windows
Get hands-on with .NET MAUI by building your first cross-platform app on Windows.
Introduction
In this tutorial, you'll learn how to create and run your first .NET MAUI app for Windows in Visual Studio 2022 (17.3 or later). We will add some MVVM Toolkit features from the .NET Community Toolkit to improve the design the default project.
Setting up the environment
If you haven't already set up your environment for .NET MAUI development, please follow the steps to Get started with .NET MAUI on Windows.
Creating the .NET MAUI project
- Launch Visual Studio, and in the start window click Create a new project to create a new project:
- In the Create a new project window, select MAUI in the All project types drop-down, select the .NET MAUI App template, and click the Next button:
- In the Configure your new project window, give your project a name, choose a location for it, and click the Next button:
- In the Additional information window, click the Create button:
- Wait for the project to be created, and for its dependencies to be restored:
In the Visual Studio toolbar, press the Windows Machine button to build and run the app.
In the running app, press the Click me button several times and observe that the count of the number of button clicks is incremented:
You just ran your first .NET MAUI app on Windows. In the next section, you'll learn how to add data binding and messaging features from the MVVM Toolkit to your app.
Troubleshooting
If your app fails to compile, review Troubleshooting known issues, which may have a solution to your problem.
Adding the MVVM Toolkit
Now that you have your first .NET MAUI app running on Windows, let's add some MVVM Toolkit features to the project to improve the app's design.
Right-click the project in Solution Explorer and select Manage NuGet Packages... from the context menu.
In the NuGet Package Manager window, select the Browse tab and search for CommunityToolkit.MVVM:
Add the latest stable version of the CommunityToolkit.MVVM package (version 8.0.0 or later) to the project by clicking Install.
Close the NuGet Package Manager window after the new package has finished installing.
Right-click the project again and select Add | Class from the context menu.
In the Add New Item window that appears, name the class
MainViewModel
and click Add:
The
MainViewModel
class will be the data binding target for theMainPage
. Update it to inherit fromObservableObject
in theCommunityToolkit.Mvvm.ComponentModel
namespace This will also require updating the class to bepublic
andpartial
.The
MainViewModel
class will contain the following code. TheCountChangedMessage
record defines a message that is sent each time the Click me button is clicked, notifying the view of the change. The ObservableProperty and RelayCommand attributes added to themessage
andIncrementCounter
members are source generators provided by the MVVM Toolkit to create the MVVM boilerplate code forINotifyPropertyChanged
andIRelayCommand
implementations. TheIncrementCounter
method's implementation contains the logic fromOnCounterClicked
in MainPage.xaml.cs, with a change to send a message with the new counter message. We will be removing that code-behind code later.
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using CommunityToolkit.Mvvm.Messaging;
namespace MauiOnWindows
{
public sealed record CountChangedMessage(string Text);
public partial class MainViewModel : ObservableObject
{
[ObservableProperty]
private string message = "Click me";
private int count;
[RelayCommand]
private void IncrementCounter()
{
count++;
if (count == 1)
message = $"Clicked {count} time";
else
message = $"Clicked {count} times";
WeakReferenceMessenger.Default.Send(new CountChangedMessage(message));
}
}
}
Note
You will need to update the namespace in the previous code to match the namespace in your project.
Open the MainPage.xaml.cs file for editing and remove the
OnCounterClicked
method and thecount
field.Add the following code to the
MainPage
constructor after the call toInitializeComponenent()
. This code will receive the message sent byIncrementCounter()
in theMainViewModel
and will update theCounterBtn.Text
property with the new message and announce the new text with theSemanticScreenReader
:
WeakReferenceMessenger.Default.Register<CountChangedMessage>(this, (r, m) =>
{
CounterBtn.Text = m.Text;
SemanticScreenReader.Announce(m.Text);
});
- You will also need to add a
using
statement to the class:
using CommunityToolkit.Mvvm.Messaging;
- In
MainPage.xaml
, add a namespace declaration to theContentPage
so theMainViewModel
class can be found:
xmlns:local="clr-namespace:MauiOnWindows"
- Add
MainViewModel
as theBindingContext
for theContentPage
:
<ContentPage.BindingContext>
<local:MainViewModel/>
</ContentPage.BindingContext>
- Update the
Button
onMainPage
to use aCommand
instead of handling theClicked
event. The command will bind to theIncrementCounterCommand
public property that is generated by the MVVM Toolkit's source generators:
<Button
x:Name="CounterBtn"
Text="Click me"
SemanticProperties.Hint="Counts the number of times you click"
Command="{Binding Path=IncrementCounterCommand}"
HorizontalOptions="Center" />
- Run the project again and observe that the counter is still incremented when you click the button:
- While the project is running, try updating the "Hello, World!" message in the first Label to read "Hello, Windows!" in MainPage.xaml. Save the file and notice that XAML Hot Reload updates the UI while the app is still running:
Next steps
Learn to build an app that displays Microsoft Graph data for a user by leveraging the Graph SDK in a .NET MAUI for Windows tutorial.
Related topics
Windows developer