這篇文章主要為大家展示了“PyQt5中如何使用messagebox”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“PyQt5中如何使用messagebox”這篇文章吧。
創(chuàng)新互聯(lián)是專業(yè)的南票網(wǎng)站建設(shè)公司,南票接單;提供成都網(wǎng)站建設(shè)、做網(wǎng)站,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行南票網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!將介紹messagebox的使用方法,messagebox可用在消息提示框、警告框、詢問框、錯誤、關(guān)于等會話框。
messagebox是消息會話框,可以提示用戶重點消息,并獲取用戶選擇,便于控制程序在特殊情況下執(zhí)行情況。
標(biāo)準(zhǔn)按鈕類型如下
打開designer.exe,使用默認(rèn)的Main Window創(chuàng)建,直接點擊Create按鈕即可
設(shè)計UI圖如下,并保存為messagebox.ui
進(jìn)入messagebox.py目錄,輸入pyuic5 -o ui_messagebox.py messagebox.ui
# encoding=utf-8 import sys import PyQt5.QtWidgets as qw import ui_msgbox class myForm(qw.QWidget, ui_msgbox.Ui_Form): def __init__(self): super().__init__() self.setupUi(self) self.btn_info.clicked.connect(self.btn_info_cb) self.btn_warn.clicked.connect(self.btn_warn_cb) self.btn_critical.clicked.connect(self.btn_critical_cb) self.btn_question.clicked.connect(self.btn_question_cb) self.btn_about.clicked.connect(self.btn_about_cb) def btn_info_cb(self): print("ready to show messagebox.") res = qw.QMessageBox.information(self, "提示", "我是info類型的MessageBox!", qw.QMessageBox.Yes | qw.QMessageBox.No) if (qw.QMessageBox.Yes == res): print("[info] you clicked yes button!") elif (qw.QMessageBox.No == res): print("[info] you clicked no button!") def btn_warn_cb(self): res = qw.QMessageBox.warning(self, "警告", "我是warn類型的MessageBox!", qw.QMessageBox.Yes | qw.QMessageBox.No) if (qw.QMessageBox.Yes == res): print("[warn] you clicked yes button!") elif (qw.QMessageBox.No == res): print("[warn] you clicked no button!") def btn_critical_cb(self): res = qw.QMessageBox.critical(self, "錯誤", "我是critical類型的MessageBox!", qw.QMessageBox.Abort | qw.QMessageBox.Cancel) if (qw.QMessageBox.Abort == res): print("[critical] you clicked Abort button!") elif (qw.QMessageBox.Cancel == res): print("[critical] you clicked Cancel button!") def btn_question_cb(self): res = qw.QMessageBox.question(self, "詢問", "我是critical類型的MessageBox", qw.QMessageBox.Retry | qw.QMessageBox.Ok) if (qw.QMessageBox.Retry == res): print("[question] you clicked Retry button!") elif (qw.QMessageBox.Ok == res): print("[question] you clicked Ok button!") def btn_about_cb(self): qw.QMessageBox.about(self, "關(guān)于", "我是critical類型的MessageBox!") if __name__ == '__main__': app = qw.QApplication(sys.argv) w = myForm() w.show() sys.exit(app.exec_())
首先設(shè)置為上一步用QT Designer設(shè)計的按鈕,添加對應(yīng)的messagebox,并獲取用戶點其情況,通過控制臺log顯示。
進(jìn)入文件目錄,輸入python3 run.py,即可彈出上述用QT Designer設(shè)計出來的頁面。
點擊info button:
點擊warn button:
點擊critical button:
點擊question button:
點擊about button:
以上是“PyQt5中如何使用messagebox”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道!