如何突出显示QToolButton

时间:2014-05-14 12:19:57

标签: c++ qt qwidget

我尝试以编程方式使QToolButton在获得焦点时突出显示。我希望它与鼠标悬停选中时完全一样。这可能吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

不确定你对样式表有多熟悉,但这个应该让你开始:

QPushButton:hover { background-color: rgb(224, 255, 0); }
QPushButton:focus { background-color: green; }