我尝试使用嵌入在两行之间的\ n的字符串,但这不起作用。
答案 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: