I18NCommander/I18N Commander/UI MAUI/Platforms/Windows/App.xaml.cs

18 lines
570 B
C#
Raw Normal View History

2022-08-06 21:48:23 +00:00
namespace UI_MAUI.WinUI;
/// <summary>
/// Provides application-specific behavior to supplement the default Application class.
/// </summary>
public partial class App : MauiWinUIApplication
{
/// <summary>
/// Initializes the singleton application object. This is the first line of authored code
/// executed, and as such is the logical equivalent of main() or WinMain().
/// </summary>
public App()
{
this.InitializeComponent();
}
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}