Hi all, I'm a problem: I would use QDockWidget containing a list of widgets like QTextEdit and QList but I do not know how to do.
I wrote this code inside the MainWindow:
dock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
this->addDockWidget(Qt::LeftDockWidgetArea, dock);
QDockWidget *dock = new QDockWidget(tr("Contenitore"), this);
dock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
this->addDockWidget(Qt::LeftDockWidgetArea, dock);
QListWidget *listaWid = new QListWidget(dock);
To copy to clipboard, switch view to plain text mode
As I continue to put in a list widget QLabels and a QTextEdit?
Thanks for the help
Bookmarks