如何制作一个标题为两行的QGroupBox?

时间:2012-07-27 21:53:20

标签: qt

我尝试使用嵌入在两行之间的\ n的字符串,但这不起作用。

1 个答案:

答案 0 :(得分:0)

换行符似乎有效:

#include <QtGui>

int main(int argc, char **argv)
{
    QApplication a(argc, argv);

    QGroupBox gb("This is the first line\nAnd this is line 2\nAnd 3");
    gb.show();

    return a.exec();
}

在Mac上同时使用Qt 4.8和Qt 5:

enter image description here