Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以像 in 一样使用 HTML 格式化QToolButton文本QLabel?toolbutton.SetText("Text <b>Test</b>")不工作
QToolButton
QLabel
toolbutton.SetText("Text <b>Test</b>")
我认为如果没有子类QToolButton化和覆盖,这是不可能的paintEvent,但如果你只想设置按钮中的文本样式,你可以像这样使用Qt 样式表:
paintEvent
toolButton->setStyleSheet("font-weight: bold");