如何在 Qt 中显示带有“是/否”按钮的消息框,以及如何检查按下了哪些按钮?
即一个看起来像这样的消息框:
假设小部件插槽中的示例:
#include <QApplication>
#include <QMessageBox>
#include <QDebug>
// ...
void MyWidget::someSlot() {
QMessageBox::StandardButton reply;
reply = QMessageBox::question(this, "Test", "Quit?",
QMessageBox::Yes|QMessageBox::No);
if (reply == QMessageBox::Yes) {
qDebug() << "Yes was clicked";
QApplication::quit();
} else {
qDebug() << "Yes was *not* clicked";
}
}
应该在 Qt 4 和 5 上工作,需要QT += widgets
在 Qt 5 和CONFIG += console
Win32 上查看qDebug()
输出。
查看StandardButton
枚举以获取您可以使用的按钮列表;该函数返回被点击的按钮。您可以使用额外的参数设置默认按钮(如果您没有或指定, Qt“会自动选择合适的默认值QMessageBox::NoButton
” )。
您可以使用 QMessage 对象创建一个消息框,然后添加按钮:
QMessageBox msgBox;
msgBox.setWindowTitle("title");
msgBox.setText("Question");
msgBox.setStandardButtons(QMessageBox::Yes);
msgBox.addButton(QMessageBox::No);
msgBox.setDefaultButton(QMessageBox::No);
if(msgBox.exec() == QMessageBox::Yes){
// do something
}else {
// do something else
}
QT 可以像 Windows 一样简单。等效代码是
if (QMessageBox::Yes == QMessageBox(QMessageBox::Information, "title", "Question", QMessageBox::Yes|QMessageBox::No).exec())
{
}
我错过tr
了答案中的翻译电话。
最简单的解决方案之一,允许以后进行国际化:
if (QMessageBox::Yes == QMessageBox::question(this,
tr("title"),
tr("Message/Question")))
{
// do stuff
}
Qt
将代码级字符串放在tr("Your String")
调用中通常是一个好习惯。
(QMessagebox
如上适用于任何QWidget
方法)
编辑:
您可以在上下文QMesssageBox
之外使用QWidget
,请参阅@TobySpeight 的答案。
如果您甚至不在QObject
上下文中,请替换tr
为qApp->translate("context", "String")
- 您需要#include <QApplication>
QMessageBox
包括快速提出此类问题的静态方法:
#include <QApplication>
#include <QMessageBox>
int main(int argc, char **argv)
{
QApplication app{argc, argv};
while (QMessageBox::question(nullptr,
qApp->translate("my_app", "Test"),
qApp->translate("my_app", "Are you sure you want to quit?"),
QMessageBox::Yes|QMessageBox::No)
!= QMessageBox::Yes)
// ask again
;
}
如果您的需求比静态方法提供的更复杂,您应该构造一个新QMessageBox
对象,并调用其exec()
方法以在其自己的事件循环中显示它并获取按下的按钮标识符。例如,我们可能希望将“否”作为默认答案:
#include <QApplication>
#include <QMessageBox>
int main(int argc, char **argv)
{
QApplication app{argc, argv};
auto question = new QMessageBox(QMessageBox::Question,
qApp->translate("my_app", "Test"),
qApp->translate("my_app", "Are you sure you want to quit?"),
QMessageBox::Yes|QMessageBox::No,
nullptr);
question->setDefaultButton(QMessageBox::No);
while (question->exec() != QMessageBox::Yes)
// ask again
;
}
QMessageBox 的Python等效代码,其中包含一个问题以及是和否按钮。单击“是”按钮时,它将弹出另一个消息框,说明单击“是”,并且“否”按钮也相同。您可以在 if 块之后推送自己的代码。
button_reply = QMessageBox.question(self,"Test", "Are you sure want to quit??", QMessageBox.Yes,QMessageBox.No,)
if button_reply == QMessageBox.Yes:
QMessageBox.information(self, "Test", "Yes Button Was Clicked")
else :
QMessageBox.information(self, "Test", "No Button Was Clicked")
如果你想用 python 制作它,你需要在你的工作台中检查这个代码。也这样写。我们用 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_()