在 C# 中使用 DrawThemeTextEx?

发布于 2024-08-23 00:26:30 字数 452 浏览 6 评论 0原文

我正在创建一个可在 Aero Glass 上使用的标签控件,我希望文本以“Vista 方式”发光。有一个名为“DrawThemeTextEx”的 WinAPI 函数,但我不知道如何使用它,并且搜索没有给出很多结果。

我找到了这条消息,但它并没有告诉你太多信息:http://www.codeproject.com/Messages/3273238/Text-on-Aero-Glass-that-has-Painted-Layer-how.aspx

有谁知道如何在 .NET 中使用“DrawThemeTextEx”?

I am creating a label control which can be used on Aero Glass and I want the text to glow "the Vista way". There is a WinAPI function called 'DrawThemeTextEx' but I don't know how to use it and searching didn't give many results.

I found this message but it doesn't tell you much : http://www.codeproject.com/Messages/3273238/Text-on-Aero-Glass-that-has-Painted-Layer-how.aspx

Does anyone know how to use 'DrawThemeTextEx' in .NET ?

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

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

发布评论

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

评论(1

夏末 2024-08-30 00:26:31

是的,所以该链接中的代码中缺少的是他调用的一些本机函数的导入语句,例如 IsCompositionEnabled 和 SelectObject 等以及一些常量等。

找到它们的最简单方法是在 平台调用

例如 VistaApi.IsCompositionEnabled() 表示仅包装该本机调用。

insface C#透明GUI提供了c#中的所有代码。

干杯,
菲克斯

Right, so what's missing from the code in that link is the import statements for some native functions he calls like IsCompositionEnabled and SelectObject etc along with some constants etc.

The easiest way to find them is by looking them up on Platform Invoke

for instance the VistaApi.IsCompositionEnabled() stated there is just wrapping that native call.

insface C# Transparent GUI provides all of the code in c#.

Cheers,
Phyx

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