调用 SetWindowLong 方法给 GWL_EXSTYLE 设置 WS_EX_TRANSPARENT 让窗口透明,此时应用程序只能收到鼠标消息但收不到触摸消息
最简单的 demo 是在 Load 事件添加下面代码
private void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
IntPtr hwnd = new WindowInteropHelper(this).Handle;
var extendedStyle = GetWindowLong(hwnd, GWL_EXSTYLE);
SetWindowLong(hwnd, GWL_EXSTYLE, extendedStyle | WS_EX_TRANSPARENT);
}
此时可以发现窗口的 MouseDown 能收到,但是 TouchDown 事件收不到
最简单的 demo 放在 github 欢迎小伙伴访问
此问题报告为官方,请看 WPF can not receive the touch message when set WS_EX_TRANSPARENT to window
因为小伙伴很少会用到这个方法设置透明,因此此问题影响很小
正规的透明设置方法请看 WPF 制作高性能的透明背景异形窗口(使用 WindowChrome 而不要使用 AllowsTransparency=True) - walterlv