您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
280B

  1. using System;
  2. using Microsoft.Maui;
  3. using Microsoft.Maui.Hosting;
  4. namespace MaUI;
  5. class Program : MauiApplication
  6. {
  7. protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
  8. static void Main(string[] args)
  9. {
  10. var app = new Program();
  11. app.Run(args);
  12. }
  13. }