gpt4 book ai didi

c# - 如何禁用 WPF 窗口上的 HitTest ?

转载 作者:太空宇宙 更新时间:2023-11-03 20:07:12 24 4
gpt4 key购买 nike

我知道这是可能的 - 以某种方式通过 SetWindowLong API 或在创建窗口时 WPF 的 Window 类的托管属性......但我如何做到这一点不知道。我根本找不到有关如何设置窗口样式的信息,因此它无法接收有关鼠标单击它的任何系统消息,并且任何单击都会通过该窗口到达底层窗口。

有谁知道样式代码之类的吗?

最佳答案

为窗口的扩展样式设置 WS_EX_TRANSPARENT 标志。它使窗口对鼠标点击透明。

public const int WS_EX_TRANSPARENT = 0x00000020;
public const int GWL_EXSTYLE = (-20);


[DllImport("user32.dll")]
public static extern int GetWindowLong(IntPtr hwnd, int index);

[DllImport("user32.dll")]
public static extern int SetWindowLong(IntPtr hwnd, int index, int newStyle);

int extendedStyle = GetWindowLong(hwnd, GWL_EXSTYLE);
WinAPI.SetWindowLong(hwnd, GWL_EXSTYLE, extendedStyle | WS_EX_TRANSPARENT);

关于c# - 如何禁用 WPF 窗口上的 HitTest ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22452066/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com