我用qt设计器制作了一个gui,并使用pyqt。我添加了一个matplotlibwidget,它与python(x,y)包一起提供。如何通过单击GUI上的按钮来显示图形?谢谢
我希望这将对您有所帮助:
class MyClass(QtGui.QMainWindow):
def __init__(self,parent = None):
QtGui.QWidget.__init__(self, parent)
self.ui = PYQTMainWindow.Ui_MainWindow()
self.ui.setupUi(self)
...
self.connect(self.ui.myButton, QtCore.SIGNAL('clicked()'), self.DisplayGraph)
#next line will work too:
#self.ui.myButton.clicked(self.DisplayGraph)
def DisplayGraph(self):
#... set your graph here the way you want