我需要使用 Windows Common Controls v6.0 来查看新样式的 UI。我知道我可以通过清单依赖项来做到这一点,但是当我无法访问清单(或源代码...从该 DLL 调用)我应该怎么做才能为该进程指定 Windows 通用控件版本?是否有任何 API 或某种方式可以做到这一点?[顺便说一下,我使用的是 C++ & VS2015]
问问题
922 次
1 回答
-2
在你的 DLL 中试试这个:
#如果定义(_M_IX86) #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*' \"") #elif 定义(_M_X64) #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*' \"") #别的 #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*' \"") #万一
于 2016-09-03T15:56:30.733 回答