AppDelegate.cs 238 B

12345678910
  1. using Foundation;
  2. namespace practiceApplicaiton
  3. {
  4. [Register("AppDelegate")]
  5. public class AppDelegate : MauiUIApplicationDelegate
  6. {
  7. protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
  8. }
  9. }