C ++ Visual Studio 6 MFC应用程序

时间:2012-12-04 16:04:10

标签: mfc

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

2 个答案:

答案 0 :(得分:0)

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.. 

答案 1 :(得分:0)

通过阅读模糊的问题很难实现你假装做的事情。

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

如果您想要一些眼睛糖果,请查看功能包。它具有漂亮的控件,如Dockable Panes,Ribbon bars等,可以为您的应用程序提供更现代的外观。

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

这个清单可以继续无限......