pyqt按钮调用python程序
时间: 2023-08-27 20:05:03 浏览: 87
python调用pyqt。
可以使用PyQt中的QPushButton类创建按钮,然后通过连接槽函数的方式调用Python程序。
以下是一个简单的示例代码:
```python
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QPushButton
from PyQt5.QtCore import pyqtSlot
class App(QWidget):
def __init__(self):
super().__init__()
self.title = 'PyQt5 button example - pythonspot.com'
self.left = 10
self.top = 10
self.width = 320
self.height = 200
self.initUI()
def initUI(self):
self.setWindowTitle(self.title)
self.setGeometry(self.left, self.top, self.width, self.height)
button = QPushButton('Run Python Program', self)
button.setToolTip('This is an example button')
button.move(100,70)
button.clicked.connect(self.on_click)
self.show()
@pyqtSlot()
def on_click(self):
print('Python program is running...')
if __name__ == '__main__':
app = QApplication(sys.argv)
ex = App()
sys.exit(app.exec_())
```
在这个示例中,我们创建了一个名为App的窗口,其中包含一个QPushButton按钮。当单击按钮时,将调用on_click槽函数,该函数将打印出一条消息。
您可以将on_click槽函数替换为您想要运行的Python程序,例如:
```python
@pyqtSlot()
def on_click(self):
import my_program
my_program.run()
```
在这个示例中,我们导入名为my_program的Python模块,并调用其中的run函数。
阅读全文