from PySide.QtCore import *
from PySide.QtGui import *
import sys
import stackwid
class Dialog(QDialog,stackwid.Ui_Dialog):
def __init__(self,parent = None):
super(Dialog,self).__init__(parent)
self.setupUi(self)
self.camButton.clicked.connect(self.set())
def set(self):
self.stackedWidget.setCurrentIndex(1)
app = QApplication(sys.argv)
form = Dialog()
form.show()
app.exec_()
我想将 camButton(PushButton) 发出的 clicked() 信号连接到作为函数 set() 的插槽。这只是不运行。
RuntimeError: Failed to connect signal clicked()