您的位置:

使用PyQt5 QMessageBox弹出提示框的方法

在PyQt5中,我们可以使用QMessageBox来创建简单的消息对话框,对于一些需要向用户反馈信息和弹出警告框的情况,它是非常有用的。本文将会介绍如何使用PyQt5创建QMessageBox,以及不同类型QMessageBox的使用。

一、使用QMessageBox弹出简单消息

在PyQt5中,我们通过导入QMessageBox创建消息对话框。我们可以创建不同类型的QMessageBox,例如:

QMessageBox.information(self, "Title", "Message")
QMessageBox.question(self, "Title", "Message", QMessageBox.Yes | QMessageBox.No, QMessageBox.No)
QMessageBox.warning(self, "Title", "Message")
QMessageBox.critical(self, "Title", "Message")

我们可以通过将第一个参数设置为self来将QMessageBox嵌入到应用程序的窗口中。第二个参数是消息对话框的标题,第三个参数是消息内容。

例如,下面的代码显示了如何使用QMessageBox.information弹出一个简单的消息:

from PyQt5.QtWidgets import QMessageBox

class Example(QWidget):
    def __init__(self):
        super().__init__()

        self.initUI()

    def initUI(self):

        self.setGeometry(300, 300, 250, 150)
        self.setWindowTitle('Message box')
        self.show()

    def closeEvent(self, event):
        reply = QMessageBox.question(self, 'Message',
            "Are you sure to quit?", QMessageBox.Yes |
            QMessageBox.No, QMessageBox.No)

        if reply == QMessageBox.Yes:
            event.accept()
        else:
            event.ignore()
if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

这是一个简单的PyQt5窗口。我们可以通过QMessageBox弹出一个简单的消息。如果你点击'x'按钮,你将看到如下输出:

二、QMessageBox的类型

QMessageBox有四种类型:information、question、warning和critical。下面我们将分别介绍这四种类型的使用。

1. information类型

information类型的QMessageBox显示一个信息框,它通常用来提醒用户一些详细但不关键的信息。我们可以在标题和内容之间添加一个图标或在右上角添加一个帮助按钮。代码如下:

from PyQt5.QtWidgets import QMessageBox

class Example(QWidget):
    def __init__(self):
        super().__init__()

        self.initUI()

    def initUI(self):

        self.setGeometry(300, 300, 250, 150)
        self.setWindowTitle('Message box')
        self.show()

    def closeEvent(self, event):
        reply = QMessageBox.information(self, 'Information',
            "This is an information message box.", QMessageBox.Ok)

        if reply == QMessageBox.Ok:
            event.accept()
        else:
            event.ignore()
if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

运行代码后,你将看到如下界面:

2. question类型

question类型的QMessageBox通常用来显示一些需要用户回答“是”或“否”的问题。它可以有默认按钮和一些可选按钮,例如‘Yes’、‘No’、‘Cancel’和‘Help’等。如果你嵌入到应用程序的窗口中,它还可以显示一个缩小、关闭和拓展按钮,代码如下:

from PyQt5.QtWidgets import QMessageBox

class Example(QWidget):
    def __init__(self):
        super().__init__()

        self.initUI()

    def initUI(self):

        self.setGeometry(300, 300, 250, 150)
        self.setWindowTitle('Message box')
        self.show()

    def closeEvent(self, event):
        reply = QMessageBox.question(self, 'Question',
            "Do you like PyQt5?", QMessageBox.Yes |
            QMessageBox.No, QMessageBox.No)

        if reply == QMessageBox.Yes:
            event.accept()
        else:
            event.ignore()
if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

运行代码后,你将看到如下对话框:

3. warning类型

warning类型的QMessageBox通常用来警告用户可能会影响程序使用的一些操作或过程。例如,它在一些需要警告的代码中经常被使用。代码如下:

from PyQt5.QtWidgets import QMessageBox

class Example(QWidget):
    def __init__(self):
        super().__init__()

        self.initUI()

    def initUI(self):

        self.setGeometry(300, 300, 250, 150)
        self.setWindowTitle('Message box')
        self.show()

    def closeEvent(self, event):
        reply = QMessageBox.warning(self, 'Warning',
            "Are you sure to delete this file?", QMessageBox.Yes |
            QMessageBox.No, QMessageBox.No)

        if reply == QMessageBox.Yes:
            event.accept()
        else:
            event.ignore()
if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

运行代码后,你将看到如下对话框:

4. critical类型

critical类型的QMessageBox在某些错误情况下被使用,例如程序崩溃、网络断开等。它是一种需要注意并进行处理的警告类型。代码如下:

from PyQt5.QtWidgets import QMessageBox

class Example(QWidget):
    def __init__(self):
        super().__init__()

        self.initUI()

    def initUI(self):

        self.setGeometry(300, 300, 250, 150)
        self.setWindowTitle('Message box')
        self.show()

    def closeEvent(self, event):
        reply = QMessageBox.critical(self, 'Critical',
            "The application is about to crash!", QMessageBox.Ok)

        if reply == QMessageBox.Ok:
            event.accept()
        else:
            event.ignore()
if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

运行代码后,你将看到如下对话框:

三、小结

我们在本文中介绍了如何创建QMessageBox及其四种类型的使用。它们都可以在很多情况下用来帮助我们有效地进行交互,并向用户提供必要的反馈信息。