1

我是 MFC 的新手。我需要创建一个浮动工具栏(CToolBar),没有停靠选项,保存和恢复它的最后一个位置。

工具栏也应该一直处于活动状态,但它不是。当我从大型机打开一个新的子窗口(例如对话框)时,浮动工具栏变得不活跃(我不能点击它的按钮,或者拖动它等等)。

过去,我使用过重叠样式的 CDiaolog,它是浮动的,并且始终根据需要处于活动状态。我的浮动工具栏可以做同样的事情吗?谢谢

int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{     
   if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
   return -1;

   toolbarIconSize.cx = toolbarIconSize.cy = TOOLBAR_MAIN_ICON_SIZE;
   if ( !m_wndMyFloatingToolbar.Create(this,m_wndMyFloatingToolbar.GetBarStyle() |WS_EX_PALETTEWINDOW  | WS_EX_TOPMOST  |CBRS_FLOATING | WS_VISIBLE) ||
    !m_wndMyFloatingToolbar.LoadToolBar(IDR_GENERAL_TOOLBAR, toolbarIconSize))
    {
       TRACE0("Failed to create My Floating Toolbar\n");
       return -1;      // fail to create
    }

   m_wndMyFloatingToolbar.EnableDocking(0);
   EnableDocking(0);

   if (!CreateCtrlBar())
   {
       TRACE0("Failed to create ctrl toolbar\n");
       return -1;      // fail to create
   }

   // ...
   //...
   return 0; 
}

void CMainFrame::OnViewToolBar()
{
   // ...
   //...

   CPoint Pos = MyFloatingToolbarGetLastPosition(); \\Get last pos 
   FloatControlBar( &m_wndMyFloatingToolbar, Pos, CBRS_ALIGN_LEFT );
   MyFloatingToolbarSetIsVisible();
   FloatControlBar( &m_wndMyFloatingToolbar, Pos, CBRS_ALIGN_LEFT );
}
void CMainFrame::MyFloatingToolbarSetIsVisible()
{
   WINDOWPLACEMENT wp;
   m_wndMyFloatingToolbar.GetParent()->GetParent()->GetWindowPlacement(&wp);
   wp.showCmd = SW_SHOW;
   m_wndMyFloatingToolbar.GetParent()->GetParent()->SetWindowPlacement(&wp);

   m_wndMyFloatingToolbar.GetParent()->GetWindowPlacement(&wp);
   wp.showCmd = SW_SHOW;
   m_wndMyFloatingToolbar.GetParent()->SetWindowPlacement(&wp);

   m_wndMyFloatingToolbar.GetWindowPlacement(&wp);
   wp.showCmd = SW_SHOW;
   m_wndMyFloatingToolbar.SetWindowPlacement(&wp);
}
void CWJToolBar::OnWindowPosChanging(WINDOWPOS FAR* lpwndpos)
{ 
   CToolBar::OnWindowPosChanging(lpwndpos); 

   if ( GetBarStyle() & CBRS_FLOATING )
   {
       if((lpwndpos->flags & SWP_HIDEWINDOW) && ((this->GetParentFrame())->m_hWnd !=(this->GetTopLevelFrame())->m_hWnd)) 
       { 
           CMainFrame* mf = (CMainFrame*)(AfxGetApp()->GetMainWnd());
           mf->MyFloatingToolbarSavePosition();         
       }
   }
}
4

2 回答 2

1
  1. 如果设置正确,您可能需要调试以查看其坐标。独立。:p
  2. 根据您当前发布的代码,我看不到您存储数据的意义,试试这个

    • 隐藏你的工具栏
    • 保存其位置数据
    • 改变你的父窗口位置和
    • 重新加载您保存的坐标。

然后保存的数据变成不正确的值。

我建议您捕获要添加工具栏的 位置。这使您的工具栏应用程序更加通用。所以,

  1. 保存工具栏到其父窗口的左上角距离,而不是其坐标
  2. 获取您的父窗口坐标
  3. 根据保存的距离重新加载工具栏

当然还有其他方法可以做到这一点,但我认为这对于完成您可能正在寻找的东西更简单。

于 2015-01-21T12:22:55.670 回答
0

使用 CMFCToolBar(而不是 CToolBar),那么您只需要 2 个命令即可实现此目的。

int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
  if (CMDIFrameWndEx::OnCreate(lpCreateStruct) == -1)
     return -1;

    :
    m_wndToolBar.SetPermament(TRUE);   // it removes CloseButton (=always active)

    CRect rect;
    GetClientRect(&rect);
    ClientToScreen(rect);
    rect.OffsetRect(100, 20);
    m_wndToolBar.FloatPane(rect);      // Float and move it to your wished coordinates
    :

}
于 2018-02-09T10:53:48.783 回答