标签:form size style his rect nbsp div tooltip logs
CBCGPToolBar m_wndParameterToolBar;
其次,在CParameterView类的OnCreate消息里面添加如下代码:
if(!m_wndParameterToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD|WS_VISIBLE|CBRS_TOP|CBRS_GRIPPER|CBRS_TOOLTIPS|CBRS_FLYBY|CBRS_SIZE_DYNAMIC) || !m_wndParameterToolBar.LoadToolBar(IDR_PARAMETERVIEW)) { TRACE0("Failed to create toolbar\n"); return -1; } m_wndParameterToolBar.EnableDocking(CBRS_ALIGN_ANY); CRect ParameterToolBar(0, 0, 200, 16); m_wndParameterToolBar.MoveWindow(ParameterToolBar);
其中,IDR_PARAMETERVIEW是新创建的工具栏资源,需要提前创建好,创建完之后一定要进行MoveWindow操作,否则看不到工具栏。
如何在BCGControlBar界面库的CBCGPFormView子视图里面添加工具栏
标签:form size style his rect nbsp div tooltip logs
原文地址:http://www.cnblogs.com/wolfmvp/p/7069578.html