python PyQt信号和插槽的连接

1、为了让菜单选项和工具栏在用户点击它们时启动,需要将信号与内置插槽连接起来。

2、QAction物体可以发出各种信号。triggered()与插槽连接。

菜单和工具栏中最常用的信号是.triggered()。用户每次点击菜单选项或工具栏按钮都会发出这个信号。

实例

classWindow(QMainWindow):
#Snip...
defnewFile(self):
#Logicforcreatinganewfilegoeshere...
self.centralWidget.setText("<b>File>New</b>clicked")

defopenFile(self):
#Logicforopeninganexistingfilegoeshere...
self.centralWidget.setText("<b>File>Open...</b>clicked")

defsaveFile(self):
#Logicforsavingafilegoeshere...
self.centralWidget.setText("<b>File>Save</b>clicked")

defcopyContent(self):
#Logicforcopyingcontentgoeshere...
self.centralWidget.setText("<b>Edit>Copy</b>clicked")

defpasteContent(self):
#Logicforpastingcontentgoeshere...
self.centralWidget.setText("<b>Edit>Paste</b>clicked")

defcutContent(self):
#Logicforcuttingcontentgoeshere...
self.centralWidget.setText("<b>Edit>Cut</b>clicked")

defhelpContent(self):
#Logicforlaunchinghelpgoeshere...
self.centralWidget.setText("<b>Help>HelpContent...</b>clicked")

defabout(self):
#Logicforshowinganaboutdialogcontentgoeshere...
self.centralWidget.setText("<b>Help>About...</b>clicked")

以上就是python PyQt信号和插槽的连接方法,希望对大家有所帮助。更多Python学习指路:Python基础教程

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。