0
我想在QToolButton
中使用HTML格式。例如在這張圖片中,我應該在「Sara」和「Online」中創建QToolButton
。QToolButton不支持HTML
這裏是我的代碼:
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);
爲什麼你認爲你可以在QToolButton中使用html? – perencia
我在QLabel中使用了html,我想我可以在QToolButton中使用它。 @perencia – AFN
你有沒有試過? http://libqxt.bitbucket.org/doc/tip/qxtpushbutton.html – ramtheconqueror