diff --git a/src/settings-ui/Settings.UI/FlyoutWindow.xaml b/src/settings-ui/Settings.UI/FlyoutWindow.xaml
index d3c5524d47..8ecffb7013 100644
--- a/src/settings-ui/Settings.UI/FlyoutWindow.xaml
+++ b/src/settings-ui/Settings.UI/FlyoutWindow.xaml
@@ -1,4 +1,4 @@
-
-
+
+
+
+
+
+
+
+
+
diff --git a/src/settings-ui/Settings.UI/ViewModels/Flyout/FlyoutViewModel.cs b/src/settings-ui/Settings.UI/ViewModels/Flyout/FlyoutViewModel.cs
index c781535afb..1d45053b2e 100644
--- a/src/settings-ui/Settings.UI/ViewModels/Flyout/FlyoutViewModel.cs
+++ b/src/settings-ui/Settings.UI/ViewModels/Flyout/FlyoutViewModel.cs
@@ -2,8 +2,10 @@
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
-using System;
+using System.ComponentModel;
+using System.Runtime.CompilerServices;
using System.Timers;
+using Microsoft.PowerToys.Settings.UI.Library.Utilities;
namespace Microsoft.PowerToys.Settings.UI.ViewModels.Flyout
{
@@ -11,6 +13,21 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels.Flyout
{
public bool CanHide { get; set; }
+ private bool _windows10;
+
+ public bool Windows10
+ {
+ get => _windows10;
+ set
+ {
+ if (_windows10 != value)
+ {
+ _windows10 = value;
+ OnPropertyChanged();
+ }
+ }
+ }
+
private Timer hideTimer;
public FlyoutViewModel()
@@ -20,6 +37,7 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels.Flyout
hideTimer.Elapsed += HideTimer_Elapsed;
hideTimer.Interval = 1000;
hideTimer.Enabled = false;
+ _windows10 = !Helper.Windows11();
}
private void HideTimer_Elapsed(object sender, ElapsedEventArgs e)
@@ -34,5 +52,12 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels.Flyout
hideTimer.Stop();
hideTimer.Start();
}
+
+ public event PropertyChangedEventHandler PropertyChanged;
+
+ private void OnPropertyChanged([CallerMemberName] string propertyName = null)
+ {
+ PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
+ }
}
}