本文最后更新于:2022年5月29日 上午
直接放出样例:
1 2 3 4 5 6 7
| QPushButton:enabled{background-color:rgb(46, 52, 54);color: white; border-radius: 10px; border: 2px groove gray; border-style: outset;}
QPushButton:disabled{background-color:rgb(238, 238, 236);color: gray; border-radius: 10px; border: 1px groove gray; }
QPushButton:hover{background-color:rgb(186, 189, 182) ; color: black;}
QPushButton:pressed{background-color: rgb(215, 236, 250); border-style: inset; }
|
参考链接:
【1】https://blog.csdn.net/yxp1992/article/details/102609192/