can somebody tell me what's the trick about using the MinimizeButton ?
I've got some code like this:
- Code: Select all
m_mgr.AddPane(mLeftSideWindow, wxAuiPaneInfo().Left().LeftDockable(true).
RightDockable(true).MaximizeButton(true).MinimizeButton(true).Floatable(true).
CloseButton(true).Caption(wxT("SystemExplorer")).CaptionVisible(true));
m_mgr.Update();
The CloseButton and the MaximizeButton are both working, but the MinimizeButton doesn't show up.
I've got another Problem with the CentrePane()
- Code: Select all
m_mgr.AddPane(mPaintBoardWindow, wxAuiPaneInfo().CentrePane().
Dockable(false).Floatable(true).MaximizeButton(true).MinimizeButton(true).Floatable(true).
CloseButton(true).Caption(wxT("Paintboard")).CaptionVisible(true));
m_mgr.Update();
the problem is: although it is marked as floatable - it is not, it can't be moved
thanx for your help
regards
chris