标签: ubuntu qt5
如我附图所述,如何更改按钮的焦点颜色?
我也改变了按钮的背景颜色,也尝试调色板但是按钮仍然没有发生变化,请帮我解决这个问题..
答案 0 :(得分:1)
使用样式表:
QPushButton:focus:pressed{ background-color: some_colour; } QPushButton:focus{ background-color: some_other_colour; }
您可以使用Qt Creator将样式添加到按钮中,也可以通过调用按钮上的setStyleSheet("...")将其加载到代码中。
setStyleSheet("...")