User Tools

Site Tools


adding_manifest_to_your_windows_application

Create a new project,and add a new resource file using new command double cilck the resource file and right click on it to create a new manifest file you can now adding manifest files to it if you want win7 looks,plate this to the manifest file

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
    type="win32"
    name="MyOrganization.MyDivision.MyApp"
    version="1.0.0.0"
    processorArchitecture="X86"
    />
    <description>adding your own description</description>
    <dependency>
    <dependentAssembly>
    <assemblyIdentity
        type="win32"
        name="Microsoft.Windows.Common-Controls"
        version="6.0.2600.0"
        processorArchitecture="X86"
        publicKeyToken="6595b64144ccf1df"
        language="*"
    />
    </dependentAssembly>
    </dependency>
 </assembly>
adding_manifest_to_your_windows_application.txt · Last modified: 2013/05/01 09:05 by toughman