How can I make a .net MAUI app maximize the window on Windows when it's launched ? Currently it is starting as a small window and I don't want the user to have to constantly maximize it.
Thanks,
How can I make a .net MAUI app maximize the window on Windows when it's launched ? Currently it is starting as a small window and I don't want the user to have to constantly maximize it.
Thanks,
Try this:
public App()
{
this.InitializeComponent();
Microsoft.Maui.Handlers.WindowHandler.Mapper.AppendToMapping(nameof(IWindow), (handler, view) =>
{
#if WINDOWS
var nativeWindow = handler.PlatformView;
nativeWindow.Activate();
IntPtr windowHandle = WinRT.Interop.WindowNative.GetWindowHandle(nativeWindow);
ShowWindow(windowHandle, 3);
#endif
});
}
#if WINDOWS
[DllImport("user32.dll")]
public static extern bool ShowWindow(IntPtr hWnd, int cmdShow);
#endif
}
The maui team has to wait on the winui team to implement any missing features so they can access Windows specific attributes, but this github discussion shows some workarounds that you can plug into your MauiApp.CreateBuilder() method.
The workaround calls the windows native services if the application is running on windows. From there you can plug in any WinUI3 methods, but that's something I'm not familiar with at all. I adopted the answer from LanceMcCarthy to maximize the window on startup or resume his set size if that presenter isn't right. Idk if the
winuiAppWindow.Presenter
would ever not be anOverlapPresenter
, but I left it in there anyway.This works on my current VS2022 17.3 Preview 1 maui RC3 version, running on windows 11
There's been a bunch of winui developments in just the couple months i've been dabbling in maui, and more planned (winui roadmap ) So chances are any major short comings will be fixed soon, especially with maui heading for general availability any day now.