Hi
in my program i have many dockwidget
i want when i run my program i see the dockwidget automaticly out the centralwidget (or out the mainwidget)
can i do that?
Hi
in my program i have many dockwidget
i want when i run my program i see the dockwidget automaticly out the centralwidget (or out the mainwidget)
can i do that?
I try it like that
but i still see it in the mainwindows when i run the application(the problem that it hide to me some objects in my scene)Qt Code:
dockWidget_2->setWidget(dockWidgetContents_5); dockWidget_2->raise(); dockWidget_2->setWindowTitle(QApplication::translate("MainWindow", "Tools", 0, QApplication::UnicodeUTF8)); dockWidget_2->setFloating(false);To copy to clipboard, switch view to plain text mode
but if i make like that
when i run i see the dockWidget_2 before i see the mainwindows (i want to see them in parallel)Qt Code:
dockWidget_2->setFloating(true);To copy to clipboard, switch view to plain text mode
another problem is that isee the dockWidget_2- without the button ,groupebox....., i see is empty
Bookmarks