它一定很简单,但我没有找到方法......我有一个带有 的 GUI MainWindow (QMainWindow)
,我在其中添加了帮助菜单并actionAbout QAction
通过 Qt 设计器。现在,当我按下帮助菜单中的关于项目时,我想要一个带有文本“程序...版本...等”的小新窗口。
一个triggered
信号似乎起作用了,NotImplementedError
当我按下关于时我得到了。但是现在不知道如何从这个信号显示一个新窗口......
class MainWindow(QMainWindow, Ui_MainWindow):
"""
My main GUI window
"""
def __init__(self, db, parent = None):
QMainWindow.__init__(self, parent)
...
@pyqtSlot(QAction)
def on_menuAbout_triggered(self, action):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
raise NotImplementedError