mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
* Revert "[PTRun]Fix accent on title bar bleed into UI (#33046)" This reverts commit8bb5a33572. * Revert "[PTRun]Use Mica backdrop to fix crashes with WPFUI (#32118)" This reverts commitb9da1e6abf. * Fix DWMAttributes in Wox Plugin Native Methods * Fix titlebar accent showing * Fix number on wrong enum
60 lines
2.0 KiB
C#
60 lines
2.0 KiB
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
// Code forked from Betsegaw Tadele's https://github.com/betsegaw/windowwalker/
|
|
using System;
|
|
using Wox.Plugin.Common.Win32;
|
|
|
|
namespace Microsoft.Plugin.WindowWalker.Components
|
|
{
|
|
/// <summary>
|
|
/// Class containing methods to control the live preview
|
|
/// </summary>
|
|
internal class LivePreview
|
|
{
|
|
/// <summary>
|
|
/// Makes sure that a window is excluded from the live preview
|
|
/// </summary>
|
|
/// <param name="hwnd">handle to the window to exclude</param>
|
|
public static void SetWindowExclusionFromLivePreview(IntPtr hwnd)
|
|
{
|
|
uint renderPolicy = (uint)DwmNCRenderingPolicies.Enabled;
|
|
|
|
_ = NativeMethods.DwmSetWindowAttribute(
|
|
hwnd,
|
|
12,
|
|
ref renderPolicy,
|
|
sizeof(uint));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Activates the live preview
|
|
/// </summary>
|
|
/// <param name="targetWindow">the window to show by making all other windows transparent</param>
|
|
/// <param name="windowToSpare">the window which should not be transparent but is not the target window</param>
|
|
public static void ActivateLivePreview(IntPtr targetWindow, IntPtr windowToSpare)
|
|
{
|
|
_ = NativeMethods.DwmpActivateLivePreview(
|
|
true,
|
|
targetWindow,
|
|
windowToSpare,
|
|
LivePreviewTrigger.Superbar,
|
|
IntPtr.Zero);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deactivates the live preview
|
|
/// </summary>
|
|
public static void DeactivateLivePreview()
|
|
{
|
|
_ = NativeMethods.DwmpActivateLivePreview(
|
|
false,
|
|
IntPtr.Zero,
|
|
IntPtr.Zero,
|
|
LivePreviewTrigger.AltTab,
|
|
IntPtr.Zero);
|
|
}
|
|
}
|
|
}
|