且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

更改 MFC 应用程序的视觉样式

更新时间:2022-05-21 15:32:34

在 stdafx.h 中有一些代码:

In stdafx.h there is some code:

#ifdef _UNICODE
#if defined _M_IX86
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_IA64
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_X64
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#else
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
#endif
#endif

你确定是否有效?如果项目不是 UNICODE,只需注释 #ifdef _UNICODE(和他的对 #endif)以激活视觉样式...

are you sure if is working ? If the project aren't UNICODE, just comment #ifdef _UNICODE (and his pair #endif) in order to have visual style activated ...