一直都是用QWidget把QMainWindow给遗忘了,突然发现 QMainWindow在设置了QToolBar和QMenuBar之后,在去填充Layout会遮盖QToolBar和QMenuBar。QMainWindow是继承自QWidget的,中心区域是一个名为centralWidget的widget容器。一般需要显示在中心区域的widget只要调用setCentralWidget设置widget就可以了。
查看UI设计工具,QMainWidget的设计器中的底层容器也是centralWidget。
QToolBar * toolBar = new QToolBar(this); QMenuBar * menuBar = new QMenuBar(this); QAction * open = new QAction(tr("open"), this); toolBar->addAction(open); menuBar->addAction(open); this->addToolBar(toolBar); this->setMenuBar(menuBar); this->setWindowTitle(tr("test")); QVBoxLayout * vb = new QVBoxLayout(this); QLabel * l = new QLabel(tr("label"), this); QLineEdit * eb = new QLineEdit(tr("edit"), this); vb->addWidget(l); vb->addWidget(eb); QWidget * w = new QWidget(this); w->setLayout(vb); this->setCentralWidget(w);
本文介绍了如何在QMainWindow中正确地使用QToolBar和QMenuBar,并详细解释了如何避免这些组件被中心区域的布局遮挡的问题。通过具体的代码示例展示了如何添加工具栏、菜单栏以及中心部件。
3014

被折叠的 条评论
为什么被折叠?



