如何在QtCreator中的QMessageBox上多行?

时间:2011-08-01 08:06:19

标签: c++ qt qt-creator qmessagebox

我想在消息框中输入以下内容:

name:
surname:
data:
test:

在每个":" i'll programatically fill the line.之后我想问一下如何在MessageBox中拥有这个结构。有可能的? 要么 我是Qt Creator的初学者。目前我学会了这样做:

QMessageBox noc;
            std::string s= "hello1";
            QString er = s.c_str();
            noc.setText(er);
            noc.exec()

谢谢,欣赏!!

2 个答案:

答案 0 :(得分:4)

QString str;

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

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

答案 1 :(得分:2)

只需在每个字符串的末尾添加“\ n”...

QMessageBox noc;
QString er = tr("name: %1\nsurname: %2\ndata: %3\ntest:%4").arg(...);
noc.setText(er);
noc.exec();