Description
Consider allowing primary window definition via the MAUI startup overloaded method as UseMauiApp<TApp, TWindow>()
Public API Changes
var builder = MauiApp.CreateBuilder();
// MainWindow will be primary window of the app
builder.UseMauiApp<App, MainWindow>();
return builder.Build();
Intended Use-Case
This would streamline the Application's code-behind file and more closely integrate the primary Window with the App.