PyQt5笔记之通用对话框QMessageBox

时间:2021-08-26 23:01:40

PyQt5中为我们提供了很多默认信息框QMessageBox,注意为方便使用需要导入模块。

QMessageBox对话框包含类型只是图标不同其他无太大差别:
     QMessageBox.information 信息框
     QMessageBox.question 问答框
     QMessageBox.warning 警告
     QMessageBox.ctitical危险
     QMessageBox.about 关于

[python]  view plain  copy
  1. from PyQt5 import QtWidgets  
  2. from PyQt5.QtWidgets import QMessageBox  
  3.     
  4. class MyWindow(QtWidgets.QWidget):  
  5.     def __init__(self):  
  6.         super(MyWindow,self).__init__()  
  7.         self.myButton = QtWidgets.QPushButton(self)  
  8.         self.myButton.setObjectName("myButton")  
  9.         self.myButton.setText("Test")  
  10.         self.myButton.clicked.connect(self.msg)  
  11.   
  12.     def msg(self):  
  13.         reply = QMessageBox.information(self,                         #使用infomation信息框  
  14.                                     "标题",  
  15.                                     "消息",  
  16.                                     QMessageBox.Yes | QMessageBox.No)  
  17.   
  18. if __name__=="__main__":    
  19.     import sys    
  20.     
  21.     app=QtWidgets.QApplication(sys.argv)    
  22.     myshow=MyWindow()  
  23.     myshow.show()  
  24.     sys.exit(app.exec_())    

PyQt5笔记之通用对话框QMessageBox