升级后的 MFC 应用程序看起来仍然很旧
Posted
技术标签:
【中文标题】升级后的 MFC 应用程序看起来仍然很旧【英文标题】:Upgraded MFC application still looks old 【发布时间】:2015-09-22 23:44:15 【问题描述】:我有一个用 VC6 编写的 MFC 应用程序。我已经将它升级到 VS2015 并且它可以构建和运行。该应用程序是一个主 exe,其中包含许多 DLL,其中包含对话框。
但是,该应用程序仍然看起来就像是用 VC6 构建的。所有的 GUI 组件都没有 Windows 7 的外观和感觉,它们看起来仍然是老式风格。
如何让我现有的应用程序看起来更现代?
【问题讨论】:
【参考方案1】:您至少应该将此行添加到您的项目中,例如将其添加到stdafx.h
#pragma comment(linker,"\"/manifestdependency:type='win32' \
name='Microsoft.Windows.Common-Controls' version='6.0.0.0' \
processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
或者将以下内容添加到您的清单文件中:
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
另见Enabling Visual Styles
所有者绘制控件变得更加复杂。请参阅此参考: Using Visual Styles with Custom and Owner-Drawn Controls
对于 ListView 和 TreeView 控件,您可以调用此函数以获得更现代的外观(尽管它在 Windows 10 中没有任何区别)
SetWindowTheme(m_ListView.m_hWnd, L"Explorer", NULL);
SetWindowTheme(m_TreeView.m_hWnd, L"Explorer", NULL);
* #pragma comment
是特定于 Visual Studio 的。对于其他编译器,您需要修改清单文件
【讨论】:
【参考方案2】:还要确保您的链接器设置 ALLOWISOLATION
设置为“是”,否则甚至不考虑清单。
【讨论】:
以上是关于升级后的 MFC 应用程序看起来仍然很旧的主要内容,如果未能解决你的问题,请参考以下文章
Eclipse WindowBuilder中的元素看起来很旧