VC多工具栏停靠

在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);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值