QToolButton不支持HTML

时间:2015-10-18 11:38:17

标签: html c++ qt

我想在QToolButton中使用HTML格式。例如,在这张图片中,我应该在“Sara”和“Online”中创建QToolButton

enter image description here

这是我的代码:

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无法定义HTML格式。 enter image description here

如何解决?

我还在QToolButton中使用了布局,但它显示了空框。

QVBoxLayout *titleLayout = new QVBoxLayout();
QLabel *nameLabel = new QLabel("Name");
QLabel *onlineLabel = new QLabel ("online");
titleLayout->addWidget(nameLabel);
titleLayout->addWidget(onlineLabel);
viewControl->setLayout(titleLayout);

1 个答案:

答案 0 :(得分:1)

根据提到的答案here

如果没有继承QToolButton并重写paintEvent,我认为这是不可能的。但你可以尝试这样的事情:

toolButton->setStyleSheet("font-weight: Italic");