pyqt5点击按钮对话框显示文字代码
时间: 2023-06-01 09:06:56 浏览: 208
可以的,这是一个技术问题,我可以给您提供代码。以下是一个简单的例子:
```python
from PyQt5.QtWidgets import QApplication, QDialog, QPushButton, QVBoxLayout, QLabel
class Dialog(QDialog):
def __init__(self):
super().__init__()
self.title = "PyQt5 Dialog"
self.top = 100
self.left = 100
self.width = 400
self.height = 300
self.label = QLabel("")
button = QPushButton("Click me")
button.clicked.connect(self.show_dialog)
layout = QVBoxLayout()
layout.addWidget(button)
layout.addWidget(self.label)
self.setWindowTitle(self.title)
self.setGeometry(self.top, self.left, self.width, self.height)
self.setLayout(layout)
def show_dialog(self):
self.label.setText("Hello, World!")
if __name__ == "__main__":
app = QApplication([])
dialog = Dialog()
dialog.show()
app.exec_()
```
当点击按钮时,对话框将显示 "Hello, World!" 的文本。这只是一个简单的例子,您可以根据您的需要进行修改和扩展。
阅读全文