1. QListWidget
    2. {
    3. border:1px solid gray; /*边界线:宽度、颜色*/
    4. /*background:gray;*/ /*表格背景色*/
    5. color:black; /*前景色:文字颜色*/
    6. /*margin:5px,5px,0px,50px;*/ /*上、下、左、右,间距*/
    7. }
    8. QListWidget::item
    9. {
    10. /*
    11. padding-top:24px;
    12. padding-bottom:4px;
    13. */
    14. }
    15. QListWidget::item:hover
    16. {
    17. show-decoration-selected:5;
    18. background:skyblue;
    19. }
    20. QListWidget::item:selected
    21. {
    22. /*border:0px;*/
    23. background:lightgray;
    24. padding:0px;
    25. margin:0px;
    26. color:red;
    27. }
    28. /*上次选择后保留的状态,鼠标离开后显示*/
    29. QListWidget::item:selected:!active
    30. {
    31. border-width:0px;
    32. background:lightgreen;
    33. }