使BCB6的窗体界面能够跟随xp的主题变化
编写一个文本的资源文件,随便命名,比如shell.txt,内容如下
<?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="X86"
name="Microsoft.Windows.Application"
type="win32"
/>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="X86"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
</assembly>
编写一个.rc资源文件,例如wl.rc,和shell.txt放在同一目录下,内容如下:
1 24 shell.txt
然后在工程中加入这个资源文件
最后在工程的cpp程序中初始化通用控件。
INITCOMMONCONTROLSEX icex;
InitCommonControlsEx(&icex);
编译运行即可发现界面变成了xp界面,但是一些比较有自主特色的按钮如bitbutton,无法变化