關於這個問題,其實網上可以找到很多這方面的文章和例子。尤其是在MSDN上,你可以查閱到非常詳細的內容。為簡單起見,本文這裡只將需要定制的代碼列出來。
第一步:
創建一個MDI工程,一路都選擇默認選項。
第二步:
在 CMainFrame 類的頭文件中添加下列方法以及變量聲明:
// Operations public: void DockControlBarLeftOf(CToolBar* Bar, CToolBar* LeftOf); protected: // control bar embedded members CToolBar m_wndToolBar1; CToolBar m_wndToolBar2;第三步:
在 CMainFrame 類實現文件中添加下列方法實現:
void CMainFrame::DockControlBarLeftOf(CToolBar* Bar, CToolBar* LeftOf) { CRect rect; DWORD dw; UINT n; // 讓 MFC 調整所有浮動工具條的尺寸,以便GetWindowRect的到准確結果 RecalcLayout(TRUE); LeftOf->GetWindowRect(&rect); rect.OffsetRect(1,0); dw=LeftOf->GetBarStyle(); n = 0; n = (dw&CBRS_ALIGN_TOP) ? AFX_IDW_DOCKBAR_TOP : n; n = (dw&CBRS_ALIGN_BOTTOM && n==0) ? AFX_IDW_DOCKBAR_BOTTOM : n; n = (dw&CBRS_ALIGN_LEFT && n==0) ? AFX_IDW_DOCKBAR_LEFT : n; n = (dw&CBRS_ALIGN_RIGHT && n==0) ? AFX_IDW_DOCKBAR_RIGHT : n; // 當矩形使用默認參數時,DockControlBar 將在單獨的一行裡浮動工具條, // 通過計算矩形的大小來模擬工具條拖動到指定位置實現浮動。 DockControlBar(Bar,n,&rect); }第四步:
在 CMainFrame::OnCreate 中創建工具條:
if (!m_wndToolBar1.CreateEx(this, TBSTYLE_FLAT | TBSTYLE_LIST, WS_CHILD | WS_VISIBLE | CBRS_TOP | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) || !m_wndToolBar1.LoadToolBar(IDR_MAINFRAME)) { TRACE0("Failed to create toolbarn"); return -1; // fail to create } if (!m_wndToolBar2.CreateEx(this, TBSTYLE_FLAT | TBSTYLE_LIST, WS_CHILD | WS_VISIBLE | CBRS_TOP | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) || !m_wndToolBar2.LoadToolBar(IDR_WINDOW)) { TRACE0("Failed to create toolbarn"); return -1; // fail to create }用 DockControlBarLeftOf 調用代替 DockControlBar調用:
m_wndToolBar1.EnableDocking(CBRS_ALIGN_ANY); m_wndToolBar2.EnableDocking(CBRS_ALIGN_ANY); EnableDocking(CBRS_ALIGN_ANY); DockControlBar(&m_wndToolBar1); DockControlBarLeftOf(&m_wndToolBar2,&m_wndToolBar1);第五步:
要實現 m_wndToolBar1 和 m_wndToolBar2的浮動。沒有工具條資源是不行的,所以還必須在資源文件(.rc)中添加ToolBar1.bmp和ToolBar2.bmp工具條資源,其 ID 分別IDR_MAINFRAME(MFC默認)和 IDR_WINDOW。
本文示例代碼或素材下載