本站消息

站长简介/公众号

  出租广告位,需要合作请联系站长

+关注
已关注

分类  

js(0)

标签  

暂无标签

日期归档  

2024-11(1)

QT:QSS样式实用集合

发布于2021-03-07 16:13     阅读(282)     评论(0)     点赞(26)     收藏(3)


目录

QListWidget

QPushButton


 

QListWidget

  1. QListWidget
  2. {
  3. outline:0px; //去除item选中时的虚线框
  4. }
  5. QListWidget::item
  6. {
  7. height:40; //item高度
  8. }
  9. QListWidget::item:hover
  10. {
  11. background: red; //悬停时item背景颜色
  12. }
  13. QListWidget::item:selected
  14. {
  15. background: rgb(170, 170, 170);//选择item后的背景颜色
  16. border:1px solid white; //选择item后的边框效果:大小,样式,颜色
  17. }

 

QPushButton

  1. QPushButton
  2. {
  3. color: white; //文字颜色
  4. background: rgb(85, 85, 85); //按钮背景
  5. border-radius: 4px; //边框半径,边框圆角效果
  6. }
  7. QPushButton:hover
  8. {
  9. color: white; //悬停在按钮上的文字颜色
  10. background: rgb(85, 85, 85); //悬停在按钮上的按钮背景
  11. }
  12. QPushButton::pressed
  13. {
  14. padding-left: 2px; //左内边距,效果看上去文字产生的细微移动,达到用户按下的效果增强
  15. padding-top: 2px; //右内边距
  16. }

 

原文链接:https://blog.csdn.net/qq_41768362/article/details/114382811



所属网站分类: 程序员的那点事

作者:php是最好的语言

链接:http://www.phpheidong.com/blog/article/83/0a0f362028fb5846b0f0/

来源:php黑洞网

任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任

26 0
收藏该文
已收藏

评论内容:(最多支持255个字符)