如何更改 Win32 API 应用程序中的控件主题?
如果我在 Win32 API 中创建一个按钮,则默认控制主题看起来像 Windows 95/98 按钮。我记得过去微软论坛告诉我如何获得XP风格,但我不记得如何做到这一点。有没有办法以编程方式或手动更改 Win32 应用程序中的控件主题?谢谢。
If I create a button in the Win32 API, the default conrol theme looks like a Windows 95/98 button. I remember in the past the Microsoft forums told me how to get the XP style, but I don't recall how to do this. Is there a way to programatically or manually change the control themes in a Win32 application? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要通过添加清单来启用视觉样式对应用程序清单中的公共控件 6 程序集的依赖性。
如果您使用 DevStudio,它应该像从链接页面添加 #pragma 指令一样简单:
You want to Enable Visual Styles by adding a manifest dependency to the common control 6 assembly to your applications manifest.
If you use DevStudio it should be as simple as adding the #pragma directive from the linked page:
SetWindowTheme Function 似乎是解决方案。华泰
SetWindowTheme Function would appear to be the solution. HTH