Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2 つの行の間に \n が埋め込まれた文字列を使用しようとしましたが、うまくいきませんでした。
改行文字が機能しているようです:
#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(); }
Qt 4.8 と Qt 5 の両方を搭載した Mac でこれを入手してください: