勇哥注:
下面开启新框架的第一个程序。我们不用系统自动生成的。自己编辑一个。
MainPage.xaml 代码:
<?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="MauiApp2.MainPage"> <ScrollView> <VerticalStackLayout Spacing="25" Padding="30" VerticalOptions="Center"> <Label x:Name="lab1" /> <Button Text="click me" Clicked="Button_Clicked"/> </VerticalStackLayout> </ScrollView> </ContentPage>