美文网首页
(七 美化-1)PyQT5 button style

(七 美化-1)PyQT5 button style

作者: 刘月玮 | 来源:发表于2018-07-05 18:39 被阅读26次

    设置 QPushButton 样式及点击时 QPushButton:pressed 的样式

    代码示例

    button.setStyleSheet(''' 
                         QPushButton
                         {text-align : center;
                         background-color : white;
                         font: bold;
                         border-color: gray;
                         border-width: 2px;
                         border-radius: 10px;
                         padding: 6px;
                         height : 14px;
                         border-style: outset;
                         font : 14px;}
                         QPushButton:pressed
                         {text-align : center;
                         background-color : light gray;
                         font: bold;
                         border-color: gray;
                         border-width: 2px;
                         border-radius: 10px;
                         padding: 6px;
                         height : 14px;
                         border-style: outset;
                         font : 14px;}
                         ''')
    

    参考链接

    http://doc.qt.io/archives/qt-4.8/stylesheet-examples.html

    相关文章

      网友评论

          本文标题:(七 美化-1)PyQT5 button style

          本文链接:https://www.haomeiwen.com/subject/xcxmuftx.html