MSDN Docs

Introduction to .NET MAUI

Welcome to the official Microsoft Developer Network (MSDN) documentation for .NET MAUI. This guide will introduce you to the core concepts and capabilities of .NET Multi-platform App UI.

What is .NET MAUI?

.NET Multi-platform App UI (.NET MAUI) is an open-source, cross-platform framework for creating native mobile and desktop applications with C# and XAML from a single shared codebase. It's the evolution of Xamarin.Forms, providing a more unified and streamlined development experience.

With .NET MAUI, you can build apps that run on:

Key Benefits of .NET MAUI

How .NET MAUI Works

.NET MAUI abstracts the native UI toolkits of each platform (Android SDK, UIKit for iOS, WinUI for Windows, AppKit for macOS). Your C# and XAML code is compiled into native .NET assemblies, which are then packaged with the runtime and any platform-specific dependencies.

When your app runs, .NET MAUI uses a handler-based architecture to map your abstract UI controls to their native counterparts on each platform. This ensures that your app looks and feels native on every device.

Core Components

.NET MAUI Essentials: A .NET Standard library that provides cross-platform APIs for accessing device capabilities like sensors, file system, battery, network status, and more.

.NET MAUI Controls: A rich set of UI controls (buttons, labels, text fields, lists, etc.) that are mapped to native controls on each platform.

Next Steps

Now that you have a basic understanding of .NET MAUI, you're ready to dive deeper. The following tutorials will guide you through setting up your development environment, building your first app, and exploring key features.

Get Started with .NET MAUI Setup »