zoukankan      html  css  js  c++  java
  • pyqt5消息框QMessageBox

    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_())    
  • 相关阅读:
    填充与复制
    张量排序
    数据统计
    合并与分割
    前向传播(张量)- 实战
    数学运算
    Broadcasting
    TensorFlow2-维度变换
    集合3
    集合2
  • 原文地址:https://www.cnblogs.com/jmlovepython/p/5723383.html
Copyright © 2011-2022 走看看