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?
基础教程推荐
- 如果条件可以为空 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 将数据集转换为列表 2022-01-01
- 获取C#保存对话框的文件路径 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- 从 C# 控制相机设备 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
