Pyqt - 将QMenuBar添加到另一个类中的QMainWindow

时间:2015-06-16 13:06:30

标签: python-3.x pyqt pyqt5

我有两个类:MainWindow()和Menubar()。 MainWindow()是QMainWindow,Menubar是QMenuBar。 我不知道如何将菜单栏添加到主窗口。

使用QToolBar,我可以做这样的事情:

scala> List(1).flatMap { _ => Stream("A", "").toIterable.map(_.head) } java.util.NoSuchElementException: next on empty iterator

但是使用QMenubar,没有像“addMenuBar()”这样的函数。

所以我无法弄明白。

1 个答案:

答案 0 :(得分:1)

QMainWindow附带默认QMenuBar,但您可以使用QMainWindow.setMenuBar()设置新的<{1}}

Qt Documentation

中的更多信息