码迷,mamicode.com
首页 > 其他好文 > 详细

pyqt5消息框QMessageBox

时间:2016-07-31 17:27:13      阅读:2009      评论:0      收藏:0      [点我收藏+]

标签:

QMessageBox消息框有以下几种类型:

  QMessageBox.information 信息框
  QMessageBox.question 问答框
  QMessageBox.warning 警告
  QMessageBox.ctitical危险
  QMessageBox.about 关于

一个简单的小例子:

技术分享

代码如下:(点击按钮调出消息框

    from PyQt5 import QtWidgets  
    from PyQt5.QtWidgets import QMessageBox  
        
    class MyWindow(QtWidgets.QWidget):  
        def __init__(self):  
            super().__init__()  
            self.myButton = QtWidgets.QPushButton(self)  
 
            self.myButton.clicked.connect(self.msg)  
      
        def msg(self):  
            reply = QMessageBox.information(self,                         #使用infomation信息框  
                                        "标题",  
                                        "消息",  
                                        QMessageBox.Yes | QMessageBox.No)  
      
    if __name__=="__main__":    
        import sys    
        
        app=QtWidgets.QApplication(sys.argv)    
        myshow=MyWindow()  
        myshow.show()  
        sys.exit(app.exec_())    

 

pyqt5消息框QMessageBox

标签:

原文地址:http://www.cnblogs.com/jmlovepython/p/5723383.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!