我目前正在尝试通过 Windows GUI API 工作,我看到的越多......让我们来重点:基本上我正在按照msdn的本指南启用 Win7 的视觉样式,但 InitCommandcontrolsEx 返回 false:我m 执行以下操作:
包括标题
#include <windows.h>
#include <commctrl.h>
使用所需的视觉样式对其进行初始化
INITCOMMONCONTROLSEX icex;
icex.dwSize = sizeof(INITCOMMONCONTROLSEX);
icex.dwICC = ICC_STANDARD_CLASSES;
if(InitCommonControlsEx(&icex)) {
cout << "Visual styles loaded" << endl;
} else {
cout << "Error while loading visual styles" << endl;
cout << GetLastError() << endl;
}
创建一个将编译清单的资源文件
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "GUI.exe.manifest"
清单本身
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="1.0.0.0"
processorArchitecture="*"
name="Company.Project.Name"
type="win32"
/>
<description>Some Description.</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type='win32'
name='Microsoft.Windows.Common-Controls'
version='6.0.0.0'
processorArchitecture='*'
publicKeyToken='6595b64144ccf1df'
language='*'
/>
</dependentAssembly>
</dependency>
</assembly>
为此,我正在使用来自 GNU binutils 的 windres
windres GUI.rc GUI.res
最后,我链接它和 ComCtl32.dll
g++ "-LC:\\Program Files\\Microsoft SDKs\\Windows\\v7.1\\Lib\\x64" -mwindows -o GUI.exe "src\\main.o" -lmingw32 -lComCtl32 "src\\GUI.res"
但是正如介绍中提到的,InitCommonControlsEx 总是跳到错误的块中,不显示证明错误的更新的视觉样式。有任何想法吗?
系统:Win7 64Bit g++编译64Bit IDE Eclipse CDT