我再CMainFrame中定义了一个成员变量:
CDialogBar  m_wndDlgBar;
在MainFrm.cpp中Create如下:
if (!m_wndDlgBar.Create(this, IDD_DIALOG1, WS_CHILD | WS_VISIBLE | CBRS_BOTTOM| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC,IDD_DIALOG1))
   {
      TRACE("Failed to create DlgBar\n");
      return -1;      // Fail to create.
   }
运行以后的CDialogBar为什么不能浮动啊?
还要做哪些变动啊?
请指教