如何在Qt按钮中更改焦点颜色(突出显示颜色)?

时间:2016-02-29 07:37:23

标签: ubuntu qt5

enter image description here

如我附图所述,如何更改按钮的焦点颜色?

我也改变了按钮的背景颜色,也尝试调色板但是按钮仍然没有发生变化,请帮我解决这个问题..

1 个答案:

答案 0 :(得分:1)

使用样式表:

QPushButton:focus:pressed{ background-color: some_colour; }
QPushButton:focus{ background-color: some_other_colour; }

您可以使用Qt Creator将样式添加到按钮中,也可以通过调用按钮上的setStyleSheet("...")将其加载到代码中。