Add more toolbar
Solved
General and Desktop
-
wrote on 4 Jul 2016, 12:38 last edited by
Hi everyone,
I would like to add a toolbar above the other, is it possible?
Like this:
link imageIf I write in mainWindow:
addToolBar(m_ToolBar1); addToolBar(m_ToolBar2);
It gives me the Toolbar next to each other.
-
Hi everyone,
I would like to add a toolbar above the other, is it possible?
Like this:
link imageIf I write in mainWindow:
addToolBar(m_ToolBar1); addToolBar(m_ToolBar2);
It gives me the Toolbar next to each other.
Moderatorswrote on 4 Jul 2016, 12:46 last edited by raven-worx 7 Apr 2016, 12:55addToolBar(m_ToolBar1); addToolBarBreak(...); // assuming this is a QMainWindow addToolBar(m_ToolBar2);
-
wrote on 4 Jul 2016, 12:53 last edited by
It works perfectly, thanks a lot.
3/3