WPF 玻璃窗口后备?

发布于 2024-08-06 18:44:02 字数 543 浏览 3 评论 0原文

创建 Glass 窗口就像在 WPF 中调用 DwmExtendFrameIntoClientArea 一样简单,但这只是技巧的一半。如果你禁用 aero,并获得类似 XP 的皮肤,那就是痛苦开始的地方:

在 XP(或禁用 aero)中,你必须调用 DrawThemeBackground 才能获得“透明的感觉”,Internet Explorer 也在其顶部执行此操作,请尝试禁用空气动力学,看看那个。

我已经编写了只是执行此操作的应用程序,在 Windows.Forms 中禁用 Aero 时优雅地回退。

问题:但是在 WPF 中执行此操作有所不同,OnRender(相当于 Avalon 中的 OnPaint)给出了您的 DrawingContext,如何通过 DrawThemeBackground WINAPI 调用进行绘制?

Creating Glass window is as easy as calling DwmExtendFrameIntoClientArea in WPF, but that is only half of the trick. If you disable aero, and get the XP-like skin thats where the pain begins:

In XP (or disabled aero) you must call DrawThemeBackground in order to get "transparent like feel", Internet explorer does this too on its top, try disabling aero and look that.

I've cooked up application that does just that, fallback gracefully when Aero is disabled in Windows.Forms.

The question: But doing it in WPF is different, the OnRender (OnPaint equiv. in avalon) which gives you DrawingContext, how one draws on that with DrawThemeBackground WINAPI call?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青衫负雪 2024-08-13 18:44:02

嗯,DrawThemeBackground 需要一个设备上下文句柄,这是一个纯粹的 Win32 概念...WPF 不使用设备上下文或窗口句柄。但是,WPF 应用程序托管在 Win32 窗口中,您可以检索该窗口的 HWND:

using System.Windows.Interop;

...

IntPtr hwnd = new WindowInteropHelper(this).Handle;

然后您可以使用 GetDC API 获取该窗口的 DC:

[DllImport("user32.dll")]
static extern IntPtr GetDC(IntPtr hWnd);

...

IntPtr hdc = GetDC(hwnd);

然后您应该能够使用 DrawThemeBackground 使用此 DC。

请注意,这纯粹是理论上的,我没有测试过......

Well, DrawThemeBackground needs an device context handle, which is a pure Win32 concept... WPF doesn't use device contexts or window handles. However, a WPF app is hosted in a Win32 window, and you can retrieve the HWND of that window :

using System.Windows.Interop;

...

IntPtr hwnd = new WindowInteropHelper(this).Handle;

You can then obtain a DC for this window using the GetDC API :

[DllImport("user32.dll")]
static extern IntPtr GetDC(IntPtr hWnd);

...

IntPtr hdc = GetDC(hwnd);

You should then be able to use DrawThemeBackground with this DC.

Note that this is all purely theoretical, I didn't test it...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文