QSS QPushButton:hover :pressed ...为状态下变更字体颜色(color)无效,变成字体粗细(font-weight)有效???

时间:2019-12-21 21:24:51   收藏:0   阅读:756
//字体颜色变更无效
QPushButton:hover{
    font-weight:bold;
    color:rgba(196, 84, 13, 1);
}


//字体颜色变更有效
QPushButton#pushButton_dataFusion:hover{
    font-weight:bold;
    color:rgba(196, 84, 13, 1);
}

。。。。

小熊想问,到底是真不会啊,还是隐含的小秘密哦

原文:https://www.cnblogs.com/azbane/p/12078095.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!