在pyqt和python(x,y)matplotlibwidget中显示带有按钮点击的图形



我用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

相关内容

  • 没有找到相关文章

最新更新