[FZ Editor] hide tool windows from alt-tab (#10011)

This commit is contained in:
Enrico Giordani
2021-03-04 13:49:29 +01:00
committed by GitHub
parent b5ca691e69
commit f7e2fa5263
3 changed files with 38 additions and 2 deletions

View File

@@ -2,9 +2,7 @@
// 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.Windows;
using System.Windows.Media;
namespace FancyZonesEditor
{
@@ -17,5 +15,10 @@ namespace FancyZonesEditor
{
InitializeComponent();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
Utils.NativeMethods.SetWindowStyleToolWindow(this);
}
}
}