Visual Studio 2010 MFC 对话框:Aero 风格?
目前,我的 MFC 对话框看起来像 Windows 98 中的对话框。有没有办法让它使用活动的 Windows 7 样式(aero)?
(我使用的是C++)
Currently, my MFC dialog looks like from Windows 98. Is there a way to make it use the active Windows 7 style (aero)?
(I'm using C++)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试将其添加到 Stdafx.h
Try adding this to Stdafx.h
您的应用程序中需要一个带有主题的清单,并确保执行 InitCommonControlsEx()。
另请查看 MFC 功能包,下面也是示例的链接:
You need a manifest in your application with a theme and ensure you do a InitCommonControlsEx().
Also have a look at the MFC feature pack too, also below is a link to examples too:
确保将有效的清单添加到您的应用程序中。
Make sure you add a valid manifest to your application.