SDK中使用Windows XP視覺風格,並嵌入編譯到exe中

來源:互聯網
上載者:User
引用地址:http://hi.baidu.com/linyuanyumeng/blog/item/791c359575646f047bf48022.htmlXP風格就是通過給控制項加一些特效(例如:邊界圓角化)達到美化介面的效果。
XP風格的UI效果是由Microsoft.Windows.Common-Controls提供的一種實現,為了擁有這種效果,你需要讓你的程式依賴於Microsoft.Windows.Common-Controls這個組件。微軟提供了Manifest來讓讓我們聲明這種依賴。

★★★方法一

在Win32程式中預設沒有使用Windows XP的視覺風格
如果你使用的是Visual Studio 2005以後的版本VS,
只需要在stdafx.h中加入以下代碼即可:

#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' " "version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")

MFC中預設是使用了視覺樣式的,不過它用的以下代碼:

01) #ifdef _UNICODE
02) #if defined _M_IX86
03) #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' " "version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
04) #elif defined _M_IA64
05) #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' " "version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
06) #elif defined _M_X64
07) #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' " "version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
08) #else
09) #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' " "version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
10) #endif
11) #endif
如果你的項目是ANSI,可以把第一行的#ifdef _UNICODE和最後一行的#endif去掉就可以了。

編譯後產生一個與程式同名副檔名為.manifest的檔案內容如下所示
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
<dependency>
    <dependentAssembly>
      <assemblyIdentity type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*' />
    </dependentAssembly>
</dependency>
</assembly>

★★★方法二
1)在程式的.rc檔案中定義下面這一行(EXE中)
1      RT_MANIFEST    "XPstyle.manifest"
若為DLL中則定義為
2      RT_MANIFEST    "XPstyle.manifest"
2)將下面的內容儲存為XPstyle.manifest

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
   name="XP style manifest"
   processorArchitecture="x86"
   version="1.0.0.0"
   type="win32"/>
<dependency>
<dependentAssembly>
<assemblyIdentity
   type="win32"
   name="Microsoft.Windows.Common-Controls"
   version="6.0.0.0"
   processorArchitecture="x86"
   publicKeyToken="6595b64144ccf1df"
   language="*" />
</dependentAssembly>
</dependency>
</assembly>
3)編譯.rc檔案,最終以上資訊會隨資源檔一起嵌入程式檔案中

+++++++++++++++++++MSDN 引申+++++++++++++++++++++++++++
How to: Embed a Manifest Inside a C/C++ Application
Troubleshooting C/C++ Isolated Applications and Side-by-side Assemblies
About Manifest Tool(mt.exe)

   可以使用手工編譯mainfest檔案到exe中,使用mt工具進行編譯,mt.exe如果是vs2005則要使用相應的sdk(可以使用最新的SDK)中mt.exe替換原安裝程式中的mt.exe
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.