how to make a mainwindow as a MDI parent in Qt creator

link|improve this question
feedback

1 Answer

Consider using QMdiArea widget as a central widget of your parent window. Smth like this:

QMainWindow *mainWindow = new QMainWindow;
mainWindow->setCentralWidget(mdiArea);

better example is here: MDI Example

hope this helps, regards

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.