我想在QToolButton
中使用HTML格式。例如,在这张图片中,我应该在“Sara”和“Online”中创建QToolButton
。
这是我的代码:
viewControl=new QToolButton(this);
QString labelText = "<P><b><i><FONT COLOR='#fff'>";
labelText .append("Sara");
labelText .append("</i></b></P></br>");
labelText .append("online");
viewControl->setText(labelText);
如何解决?
我还在QToolButton
中使用了布局,但它显示了空框。
QVBoxLayout *titleLayout = new QVBoxLayout();
QLabel *nameLabel = new QLabel("Name");
QLabel *onlineLabel = new QLabel ("online");
titleLayout->addWidget(nameLabel);
titleLayout->addWidget(onlineLabel);
viewControl->setLayout(titleLayout);
答案 0 :(得分:1)
根据提到的答案here
如果没有继承QToolButton并重写paintEvent,我认为这是不可能的。但你可以尝试这样的事情:
toolButton->setStyleSheet("font-weight: Italic");