很好的outlookbar控件CXTOutBarCtrl
2010-07-06 20:44:00 来源:WEB开发网该控件来源于Xtreme Toolkit,我对其进行了修改,使其不依赖于类库独立存在,由于我没有运用XT的其他类,可能你会觉得它没有在类库中的华丽,但相对于其小巧的体格而言,已经很难得了。
源文件包括两个头文件,两个执行文件:XTMemDC.h,XTMemDC.cpp,XTOutBarCtrl.h,XTOutBarCtrl.cpp.
其中XTMemDC是一个CDC继承类,用于辅助功能。
该控件的使用方法:
1、用mfc sdi wizard生成一个子SDI程序。
2、在MainFrm.h头部加入#include "XTOutBarCtrl.h"
3、在MainFrm.h是加入成员变量
CSplitterWnd m_wndSplitter;
CXTOutBarCtrl m_wndOutlookBar;
CImageList m_ImageLarge;
CImageList m_ImageSmall;
bool m_bDestroy;
4、CMainFrame增加消息映射函数
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
// create splitter window
if (!m_wndSplitter.CreateStatic(this, 1, 2))
return FALSE;
// Here we create the outbar control using the splitter as its parent
// and setting its id to the first pane.
if (!m_wndOutlookBar.Create(WS_CHILD|WS_VISIBLE|WS_CLIPCHILDREN, CRect(0,0,0,0),
&m_wndSplitter, m_wndSplitter.IdFromRowCol(0, 0), OBS_XT_DEFAULT))
{
TRACE0("Failed to create outlook bar.");
return FALSE;
}
if (!m_wndSplitter.CreateView(0, 1, pContext->m_pNewViewClass,
CSize(100, 100), pContext))
{
m_wndSplitter.DestroyWindow();
return FALSE;
}
// Set the background and text color of the outlook bar.
m_wndOutlookBar.SetBackColor(RGB(0x3a,0x6e,0xa5));
m_wndOutlookBar.SetTextColor(RGB(0xff,0xff,0xff));
// Set the default sizes for the splitter panes.
CRect r;
GetClientRect(&r);
m_wndSplitter.SetColumnInfo( 0, r.Width()/4, 0 );
m_wndSplitter.RecalcLayout();
// Add items to the outlook bar.
InitializeOutlookBar();
return TRUE;
}
Tags:outlookbar 控件 CXTOutBarCtrl
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接