程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> VC >> vc教程 >> 讓VC6.0寫出來的程序在WinXP下顯示為XP風格

讓VC6.0寫出來的程序在WinXP下顯示為XP風格

編輯:vc教程

1. 在資源文件裡選擇插入,選擇Custom,然後輸入資源類型為24,不要輸入其他的。

2. 將下面的XML代碼拷入編輯器:

 <?XML version="1.0" encoding="UTF-8" standalone="yes"?>
   <assembly
      XMLns="urn:schemas-microsoft-com:asm.v1"
      manifestVersion="1.0">
   <assemblyIdentity
    processorArchitecture="x86"
    version="5.1.0.0"
    type="win32"
    name="test.exe"/>
    <description>Test Application</description>
    <dependency>
    <dependentAssembly>
    <assemblyIdentity
      type="win32"
      name="Microsoft.Windows.Common-Controls"
      version="6.0.0.0"
      publicKeyToken="6595b64144ccf1df"
      language="*"
      processorArchitecture="x86"/>
    </dependentAssembly>
    </dependency>
   </assembly>

3. 將資源的ID改為1,一定要是1。

4. 如果你的程序是Win32的記得加入"commctrl.h" 並且鏈接 "comctl32.lib"。如果是MFC的就不用了,框架已經幫你加入了。然後Rebuild,很簡單吧:)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved