在CMainFrame中声明成员函数,并调用即可。
//barName TOOLBAR资源名称
void CMainFrame::DockControlBarEx(CToolBar *bar, LPCTSTR barName)
{
if (!bar->CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!bar->LoadToolBar(barName))
{
TRACE0("Failed to create exttoolbar/n");
//return -1; // fail to create
}
bar->SetWindowText(_T("Extend Bar"));
bar->EnableDocking(CBRS_ALIGN_ANY);
CRect rect;
bar->GetWindowRect(&rect);
rect.OffsetRect(1, 0);
this->RecalcLayout();
DockControlBar(bar, AFX_IDW_DOCKBAR_TOP, &rect);
}
在OnCreate中调用:
DockControlBarEx(&m_wndExtToolBar, LPCTSTR(IDR_TOOLBAR1));
或
void CMainFrame::DockControlBarLeftOf(CToolBar * Bar, LPCTSTR ToolBarName, CToolBar * LeftOf)
{
if (!Bar->CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!Bar->LoadToolBar(ToolBarName))
{
TRACE0("Failed to create exttoolbar/n");
//return -1; // fail to create
}
Bar->SetWindowText("Extend bar");
Bar->EnableDocking(CBRS_ALIGN_ANY);
CRect rect;
DWORD dw;
UINT n;
this->RecalcLayout();
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)?AFX_IDW_DOCKBAR_LEFT:n;
n=(dw&CBRS_ALIGN_RIGHT)?AFX_IDW_DOCKBAR_RIGHT:n;
DockControlBar(Bar,n,&rect);
}
在OnCreate中调用:
DockControlBarLeftOf(&m_wndExtToolBar, LPCTSTR(IDR_TOOLBAR1), &m_wndToolBar);