Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
Add more toolbar
-
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.
-
addToolBar(m_ToolBar1); addToolBarBreak(...); // assuming this is a QMainWindow addToolBar(m_ToolBar2);
-
It works perfectly, thanks a lot.