我希望在消息框中包含以下几行:

name:
surname:
data:
test:

在每个:之后,我将以编程方式填充该行。我想问一下如何在QMessageBox中使用此结构。有可能的?

我是Qt Creator的初学者。目前,我学会了这样做:
QMessageBox noc;
            std::string s= "hello1";
            QString er = s.c_str();
            noc.setText(er);
            noc.exec()

最佳答案

QString str;

str = QString("name: %1\nsurname: %2\ndata: %3").arg(...).arg(...).arg(...);
QMessageBox::information(0, "Title", str);

看看QMessageBox::information()QString::arg()

关于c++ - 如何在QtCreator的QMessageBox中的多行上编写?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6895681/

10-13 06:16