通过QtGui.QAction将参数传递给触发的方法

时间:2013-01-12 12:27:18

标签: python pyqt qtgui

假设我有一个方法:

def open(self, opt):
    if opt == True:
    ...
    if opt == False:
    ...

如何使用 QtGui.QAction 将参数传递给它:

self.openAct = QtGui.QAction("O&pen", self, shortcut="Ctrl+O",
            statusTip="Opens a location", triggered=self.open)

1 个答案:

答案 0 :(得分:0)

我从functools import partial 找到答案。它在This thread