VC6和VB6的程序外观

来源:百度知道 编辑:UC知道 时间:2024/05/28 19:51:06
VC6和VB6写的软件除了标题栏有XP主题的样子,按钮什么的都跟2000的一样难看,怎么办啊?

其实这是一个XML文件搞的鬼,将以下内容复制到记事本中,保存为“应用程序文件名.exe.manifest”
比如程序是singun.exe,就保存为singun.exe.manifest,放在程序同一文件夹下,再启动程序!

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
type="win32"
name="DelphiApplication"
version="1.0.0.0"
processorArchitecture="*"/>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
publicKeyToken="6595b64144ccf1df"
language="*"
processorArchitecture="*"/>
</dependentAssembly>
</dependency>
</assembly