标签: qt qtstylesheets qgroupbox
我知道我们可以使用CSS做到这一点:
QGroupBox::title { color: red; }
但是我想要这样的东西:
QGroupBox *myBox = new QGroupBox(); myBox->setTitle(" <span style=\"white-space:nowrap\"> Hello World </span> ");
我该怎么办?