User Tools

Site Tools


adding_manifest_to_your_windows_application

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

adding_manifest_to_your_windows_application [2013/05/01 09:05] (current)
Line 1: Line 1:
 +Create a new project,and add a new resource file using new command 
 +{{:​wiki:​pellc_manifest1.jpg?​200|}} 
 +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 
 +<​code>​ 
 +<?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>​ 
 +</​code>​
adding_manifest_to_your_windows_application.txt · Last modified: 2013/05/01 09:05 by toughman