在 C# 中使用 DrawThemeTextEx?
我正在创建一个可在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,所以该链接中的代码中缺少的是他调用的一些本机函数的导入语句,例如 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