如何用Visual Studio 2022创建MAUI的Hello World程序
以下是使用 Visual Studio 2022 创建一个 MAUI (Multi-platform App UI) "Hello World" 程序的步骤:
环境准备
- 安装 Visual Studio 2022: 确保你已经安装了最新版本的 Visual Studio 2022。
- 安装 MAUI 工作负载 : 在安装或修改 Visual Studio 2022 时,选择
.NET Multi-platform App UI development
工作负载。
创建项目
- 启动 Visual Studio 2022: 打开 Visual Studio 2022。
- 创建新项目 :
- 在启动页面,点击
Create a new project
。 - 在搜索框中输入
MAUI
,选择MAUI App
模板,然后点击Next
。
- 在启动页面,点击
- 配置项目 :
- 输入项目名称、选择保存位置,然后点击
Create
。 - 选择目标框架(默认选择最新的 .NET),然后点击
Create
。
- 输入项目名称、选择保存位置,然后点击
修改项目代码
-
打开
MainPage.xaml
文件:- 在解决方案资源管理器中,找到并双击
MainPage.xaml
文件。
- 在解决方案资源管理器中,找到并双击
-
修改 XAML 代码:
xml<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="YourNamespace.MainPage"> <StackLayout> <Label Text="Hello World" VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand" /> </StackLayout> </ContentPage>
运行项目
- 选择目标设备: 在工具栏上,选择要运行的设备或模拟器(如 Android 模拟器或本地计算机)。
- 运行项目 : 点击工具栏上的
Run
按钮(或按F5
)。
这时,应用程序将在所选设备或模拟器上运行,并显示 "Hello World"。
示例代码说明
MainPage.xaml
是定义 UI 布局的文件,其中包含一个Label
控件,用于显示 "Hello World" 文本。VerticalOptions
和HorizontalOptions
用于设置控件在页面上的对齐方式。
通过以上步骤,你就可以成功创建并运行一个简单的 MAUI "Hello World" 程序。