假设我有一个类似的方法:
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)