Is it possible to get the Hwnd of a WPF Popup control?(是否可以获得 WPF Popup 控件的 Hwnd?)
问题描述
我只需要对自定义形状的 WPF 窗口的一部分应用 Aero 背景模糊.问题是要使用 DWM 应用模糊,我需要为 DwmEnableBlurBehindWindow
函数提供一个窗口句柄.
I need to apply an Aero background blur to only part of a custom-shaped WPF window. The problem is that to apply the blur with DWM, I need to provide a window handle to the DwmEnableBlurBehindWindow
function.
有人告诉我,WPF 弹出控件实际上是一个单独的窗口.那很好.我可以得到一个弹出窗口的句柄来对其应用模糊吗?如果是这样,怎么做?
I have been told that the WPF popup control is actually a separate window. That is good. Can I get a popup's handle to apply blur to it? If so, how?
推荐答案
试试这个
HwndSource source = (HwndSource)HwndSource.FromVisual(myPopup)
或者这个,但这个只适用于实际的 Windows,但可能有助于将来的参考.
or this but this one only works for actual Windows, but might help for future references.
IntPtr handle = new WindowInteropHelper(myWindow).Handle;
这篇关于是否可以获得 WPF Popup 控件的 Hwnd?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以获得 WPF Popup 控件的 Hwnd?


- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01