How to remove a Docking Pane border |
Post Reply |
Author | |
rina2,lee
Newbie Joined: 27 November 2017 Status: Offline Points: 2 |
Post Options
Thanks(0)
Posted: 27 November 2017 at 4:20am |
I tried to remove a border of DockingPane. (I colored it as red). there is a no option to remove a border... ////////////////////////////////////////////////////////////////////////////// .... m_paneManager.InstallDockingPanes(this, false); m_paneManager.LockSplitters(TRUE); m_paneManager.ModifyStyle(WS_CAPTION,0); m_paneManager.SetDefaultPaneOptions(xtpPaneNoHideable|xtpPaneNoHoverShow); CXTPDockingPane* pPaneTab = m_paneManager.CreatePane(IDR_PANE_TAB, XTP_DPI(CRect(0, 0,1636, 36)), xtpPaneDockTop,0); pPaneTab->SetOptions(xtpPaneNoFloatable|xtpPaneNoCaption|xtpPaneNoDockable); CXTPDockingPane* pPaneExplorer = m_paneManager.CreatePane(IDR_PANE_EXPLORER, XTP_DPI(CRect(0, 0,280, 120)), xtpPaneDockRight, 0); pPaneExplorer->SetOptions(xtpPaneNoFloatable|xtpPaneNoCaption|xtpPaneNoDockable); CXTPDockingPane* pPaneHistory = m_paneManager.CreatePane(IDR_PANE_LIST, XTP_DPI(CRect(0, 0,280, 30)), xtpPaneDockBottom, pPaneExplorer); pPaneHistory->SetOptions(xtpPaneNoFloatable|xtpPaneNoCaption|xtpPaneNoDockable); ... } ///////////////////////////////////////////////////////////////////////////// |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |