标签: qt
是否可以使用QToolButton中的HTML格式化QLabel文字? toolbutton.SetText("Text <b>Test</b>")不起作用
QToolButton
QLabel
toolbutton.SetText("Text <b>Test</b>")
答案 0 :(得分:2)
如果没有子类化QToolButton并覆盖paintEvent,我认为这是不可能的,但是如果您只想在按钮中设置文本样式,则可以使用Qt Style Sheets这样的:
paintEvent
toolButton->setStyleSheet("font-weight: bold");