如何在QtCreator中的QMessageBox中写多行?

发布于 2024-11-27 12:25:31 字数 358 浏览 1 评论 0原文

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

name:
surname:
data:
test:

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

我是 Qt Creator 的初学者。目前我学会了这样做:

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

I would like to have in a message box the following lines:

name:
surname:
data:
test:

After each : I'll programmatically fill the line. I would like to ask how can I have this structure in a QMessageBox. It is possible?

I am a beginner in Qt Creator. Currently I learned to do this:

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

独﹏钓一江月 2024-12-04 12:25:31
QString str;

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

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

QString str;

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

Take a look at QMessageBox::information() and QString::arg().

审判长 2024-12-04 12:25:31

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

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

just add "\n" at the end of each string...

QMessageBox noc;
QString er = tr("name: %1\nsurname: %2\ndata: %3\ntest:%4").arg(...);
noc.setText(er);
noc.exec();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文