C++;Visual Studio 6 MFC应用程序

C++;Visual Studio 6 MFC应用程序,mfc,Mfc,我有一个旧的应用程序,有没有一种快速的方法可以在不改变太多代码的情况下对应用程序进行整容? 一些MFC模拟器?1)创建一个文件。清单 1)Create a file <yourapplication><.exe>.manifest 2)Paste the file in the same path as your exe 3)Paste the following content inside the manifest file <?xml version=

我有一个旧的应用程序,有没有一种快速的方法可以在不改变太多代码的情况下对应用程序进行整容? 一些MFC模拟器?

1)创建一个文件。清单
1)Create a file <yourapplication><.exe>.manifest

2)Paste the file in the same path as your exe 

3)Paste the following content inside the manifest file

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
    version=""
    processorArchitecture=""
    name=""
    type=""
/>
<description></description>
<dependency>
    <dependentAssembly>
        <assemblyIdentity
            type="win32"
            name="Microsoft.MSXML2"
            version=""
            processorArchitecture="X86"
            publicKeyToken=""
            language="*"
        />
    </dependentAssembly>
</dependency>
</assembly>

4) Launch the exe.. 
2) 将文件粘贴到与exe相同的路径中 3) 将以下内容粘贴到清单文件中 4) 启动exe。。
通过阅读你含糊不清的问题,很难意识到你假装在做什么

如果您想使用更现代的VisualStudio版本,只需在该版本上打开它,就会启动解决方案转换向导

如果你想吸引眼球,只需看看功能包。它有很好的控件,如可停靠窗格、功能区条等,这将为您的应用程序提供更现代的外观

如果要更改表单背景,只需阅读WM_CTL_COLOR和OnCtlColor文档并覆盖默认行为


这个列表可以无限延伸…

如果它是一个GUI应用程序,看起来是长方体和三维的,请尝试添加一个清单文件来使用主题控件。你的意思是说,你想升级到新版本。它是?