Enable acrylic effect on first launch if running on Windows 11

This commit is contained in:
DB p 2025-03-22 12:25:02 +09:00
parent dda008f80b
commit 4e5584b709

View file

@ -98,6 +98,9 @@ namespace Flow.Launcher
{
_settings.FirstLaunch = false;
App.API.SaveAppAllSettings();
/* Set Backdrop Type to Acrylic for Windows 11 when First Launch. Default is None. */
if (OperatingSystem.IsWindowsVersionAtLeast(10, 0, 22000))
_settings.BackdropType = BackdropTypes.Acrylic;
var WelcomeWindow = new WelcomeWindow();
WelcomeWindow.Show();
}