pyqt5中弹窗提示
时间: 2023-06-29 08:11:07 浏览: 114
在 PyQt5 中,可以使用 QMessageBox 类来创建弹窗提示。以下是一个简单的示例代码:
```python
from PyQt5.QtWidgets import QApplication, QWidget, QMessageBox
class MyWidget(QWidget):
def __init__(self):
super().__init__()
def show_message_box(self):
QMessageBox.information(self, "提示", "这是一条弹窗提示!")
if __name__ == '__main__':
app = QApplication([])
widget = MyWidget()
widget.show()
widget.show_message_box()
app.exec_()
```
在上面的代码中,我们定义了一个 `MyWidget` 类,并在其中定义了一个 `show_message_box` 方法,该方法使用 `QMessageBox.information` 创建了一个弹窗提示。在 `if __name__ == '__main__'` 中,我们创建了一个 `MyWidget` 实例并显示它,并在后面调用了 `show_message_box` 方法来弹出提示窗口。最后,我们进入主事件循环并等待应用程序退出。
阅读全文