Yes/No message box using QMessageBox

前端 未结 7 2084
渐次进展
渐次进展 2021-01-30 05:59

How do I show a message box with Yes/No buttons in Qt, and how do I check which of them was pressed?

I.e. a message box that looks like this:

相关标签:
7条回答
  • 2021-01-30 06:47

    If you want to make it in python you need check this code in your workbench. also write like this. we created a popup box with python.

    msgBox = QMessageBox()
    msgBox.setText("The document has been modified.")
    msgBox.setInformativeText("Do you want to save your changes?")
    msgBox.setStandardButtons(QMessageBox.Save | QMessageBox.Discard | QMessageBox.Cancel)
    msgBox.setDefaultButton(QMessageBox.Save)
    ret = msgBox.exec_()
    
    0 讨论(0)
提交回复
热议问题