0
它必須是非常簡單的東西,但我沒有設法找到一種方法... 我有一個GUI與MainWindow (QMainWindow)
,在那裏我添加了幫助菜單和actionAbout QAction
通過Qt設計師。現在我想要一個帶有文本「Program ... Version ...等等」的小新窗口,當我在幫助菜單中按關於項目時顯示。新彈出窗口(Qt4/PyQt4,Python3)
A 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