我QFrame
只是用来有彩色边框,因为我找不到改变颜色的方法QDialog
。所以因为篡改了
QFrame
'的边框,也影响了QLabel
'的外观,有没有什么办法可以避免呢?
编辑:
这是我正在使用的样式表,其中QLabels
' 没有任何效果。它需要QFrames
'
QWidget {
background-color: black;
}
QLabel {
color:white;
border: solid 2px black;
font: bold 19px Sans Serif;
}
QFrame {
border: solid 2px white;
border-radius: 4px;
}