• 大小: 66KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2022-02-21
  • 语言: C/C++
  • 标签: outlookbar  控件  

资源简介

很不错的一个outlookbar控件CXTOutBarCtrl,该控件来源于Xtreme Toolkit,作者对其进行了修改,使其不依赖于类库独立存在,由于没有运用XT的其他类,可能你会觉得它没有在类库中的华丽,但相对于其小巧的体格而言,已经很难得了。 源文件包括两个头文件,两个执行文件:XTMemDC.h,XTMemDC.cpp,XTOutBarCtrl.h,XTOutBarCtrl.cpp.其中XTMemDC是一个CDC继承类,用于辅助功能

资源截图

代码片段和文件信息

// Demo.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “Demo.h“

#include “MainFrm.h“
#include “DemoDoc.h“
#include “DemoView.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDemoApp

BEGIN_MESSAGE_MAP(CDemoApp CWinApp)
//{{AFX_MSG_MAP(CDemoApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDemoApp construction

CDemoApp::CDemoApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CDemoApp object

CDemoApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CDemoApp initialization

BOOL CDemoApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

LoadStdProfileSettings();  // Load standard INI file options (including MRU)

// Register the application‘s document templates.  Document templates
//  serve as the connection between documents frame windows and views.

CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CDemoDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CDemoView));
AddDocTemplate(pDocTemplate);

// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);

// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;

// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();

return TRUE;
}


/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-03-17 13:26  www.NewXing.com\
     文件        2132  2003-02-25 20:09  www.NewXing.com\Demo.clw
     文件        4078  2003-02-25 17:10  www.NewXing.com\Demo.cpp
     文件        5500  2003-02-25 19:45  www.NewXing.com\Demo.dsp
     文件         531  2003-02-25 18:01  www.NewXing.com\Demo.dsw
     文件        1334  2003-02-25 17:10  www.NewXing.com\Demo.h
     文件       11561  2003-02-25 19:30  www.NewXing.com\Demo.rc
     文件        1737  2010-10-29 13:09  www.NewXing.com\DemoDoc.cpp
     文件        1453  2003-02-25 17:10  www.NewXing.com\DemoDoc.h
     文件        1886  2010-10-29 13:09  www.NewXing.com\DemoView.cpp
     文件        1686  2003-02-25 17:10  www.NewXing.com\DemoView.h
     文件        7838  2010-10-29 13:09  www.NewXing.com\MainFrm.cpp
     文件        1887  2010-10-29 13:09  www.NewXing.com\MainFrm.h
     目录           0  2010-10-20 11:43  www.NewXing.com\res\
     文件        1086  2003-02-25 19:30  www.NewXing.com\resource.h
     文件        1078  2003-02-25 17:10  www.NewXing.com\res\Demo.ico
     文件         396  2003-02-25 17:10  www.NewXing.com\res\Demo.rc2
     文件        1078  2003-02-25 17:10  www.NewXing.com\res\DemoDoc.ico
     文件        1078  2003-02-25 19:30  www.NewXing.com\res\icon1.ico
     文件        1078  2003-02-25 19:30  www.NewXing.com\res\icon10.ico
     文件        1078  2003-02-25 19:30  www.NewXing.com\res\icon11.ico
     文件        1078  2003-02-25 19:30  www.NewXing.com\res\icon2.ico
     文件        1078  2003-02-25 19:30  www.NewXing.com\res\icon3.ico
     文件        1078  2003-02-25 19:30  www.NewXing.com\res\icon4.ico
     文件        1078  2003-02-25 19:30  www.NewXing.com\res\icon5.ico
     文件        1078  2003-02-25 19:30  www.NewXing.com\res\icon6.ico
     文件        1078  2003-02-25 19:30  www.NewXing.com\res\icon7.ico
     文件        1078  2003-02-25 19:30  www.NewXing.com\res\icon8.ico
     文件        1078  2003-02-25 19:30  www.NewXing.com\res\icon9.ico
     文件        1078  2003-02-25 17:10  www.NewXing.com\res\Toolbar.bmp
     文件         206  2003-02-25 17:10  www.NewXing.com\StdAfx.cpp
............此处省略7个文件信息

评论

共有 条评论