Can we create multiple tabs in Central Widget of QT QMain Window
-
wrote on 13 Aug 2018, 23:24 last edited by
Can we create multiple tabs in Central Widget of QT GUI
-
Can we create multiple tabs in Central Widget of QT GUI
wrote on 14 Aug 2018, 03:45 last edited by@Qt-Enthusiast
Are you looking something like this http://doc.qt.io/qt-5/qstackedwidget.html ? -
Hi,
Or QTabWidget ?
-
wrote on 15 Aug 2018, 01:27 last edited by
can we make QTabWidget as central widget
-
can we make QTabWidget as central widget
@Qt-Enthusiast yes
-
wrote on 16 Aug 2018, 02:52 last edited by
can some one share with me the application where central widget is made as QTabWidget
-
can some one share with me the application where central widget is made as QTabWidget
wrote on 16 Aug 2018, 08:24 last edited byTake a look at Tab Dialog Example a subclass of
QDialog
. -
Hi
There is really nothing to it.you can just do
auto tw = new QTabWidget (this); tw->addTab(new QWidget, "first"); setCentralWidget( tw );
1/8