You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 line
786 B

  1. using Microsoft.UI.Xaml;
  2. // To learn more about WinUI, the WinUI project structure,
  3. // and more about our project templates, see: http://aka.ms/winui-project-info.
  4. namespace HybridApp.WinUI
  5. {
  6. /// <summary>
  7. /// Provides application-specific behavior to supplement the default Application class.
  8. /// </summary>
  9. public partial class App : MauiWinUIApplication
  10. {
  11. /// <summary>
  12. /// Initializes the singleton application object. This is the first line of authored code
  13. /// executed, and as such is the logical equivalent of main() or WinMain().
  14. /// </summary>
  15. public App()
  16. {
  17. this.InitializeComponent();
  18. }
  19. protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
  20. }
  21. }