BCGPContorBar 静态工程设置详解

https://support.bcgsoft.com/KB/View/37-how-can-i-add-a-library-to-my-static-mfc-project

How can I add a library to my static MFC project?

You need to follow these steps:

    1. Build a static library using Integration Wizard.

    2. Add the following code to your application's stdafx.cpp (after include stdafx.h):

      #if _MSC_VER > 1500
      #define COMPILE_MULTIMON_STUBS

      #pragma warning(push)
      #pragma warning(disable: 4996)

      #include "multimon.h"

      #pragma warning(pop)

      #endif

    3. In the Visual C++ open "Resource Includes" dialog (View | Resource Includes in Visual C++ 6.0 or right click to .rc folder in "Resource View " tab in Visual Studio.NET or later editions).

    4. Add #include "bcgprores.h" to "Read-only symbol directives".

    5. Add #include "BCGCBPro.rc" to "compile-time directives". If your project requires localization, type #include "L.***cgcbpro.rc" where *** is a language name prefix. See Localization page for more details.

    6. Remove _AFX_NO_SPLITTER_RESOURCES. Otherwise, you'll not be able to see splitter cursors required by the library.

    7. If you are using static library version with MFC shared DLL, add "#define _BCGCBPRO_STATIC_" to "compile-time directives".

    8. If your project was ported from MFC version 2008 or higher, please remove all references to afxribbon.rc in your resource file: it conflicts with BCGCBPro.rc.

    9. If you need to load Office 2007-like styles, you've to add the following .rc files to "compile-time directives" after #include "BCGCBPro.rc":

      #include "<BCGPro installation folder>StylesBCGPStyle2007Luna.rc"
      #include "<BCGPro installation folder>StylesBCGPStyle2007Obsidian.rc"
      #include "<BCGPro installation folder>StylesBCGPStyle2007Silver.rc"
      #include "<BCGPro installation folder>StylesBCGPStyle2007Aqua.rc"

      and add <BCGPro installation folder>Styles folder to "Additional resource include directory" in the project's Resources settings.

      (you've to make the same changes for Office 2010-like or Scenic styles)
原文地址:https://www.cnblogs.com/M4ster/p/6950020.html