如何在 Qt 样式中更改 QComboBox QAbstractItemView 边框半径 sheet
How to change QComboBox QAbstractItemView border radius in Qt Style sheet
我希望QCombobox有一个类似上图的圆形。
我做的有点像。
但是当我点击QComboBox查看列表时,圆形没有创建。
边框是圆的,背景好像不是这样的
QComboBox:editable {
background-color : red;
}
QComboBox QAbstractItemView {
border : 2px solid blue;
border-radius: 6px;
}
这是第三种风格的照片sheet。我写它是为了测试。
comboBox_name.view().window().setWindowFlags(Qt.Popup | Qt.FramelessWindowHint)
comboBox_name.view().window().setAttribute(Qt.WA_TranslucentBackground)
我希望QCombobox有一个类似上图的圆形。
我做的有点像。
但是当我点击QComboBox查看列表时,圆形没有创建。
边框是圆的,背景好像不是这样的
QComboBox:editable {
background-color : red;
}
QComboBox QAbstractItemView {
border : 2px solid blue;
border-radius: 6px;
}
这是第三种风格的照片sheet。我写它是为了测试。
comboBox_name.view().window().setWindowFlags(Qt.Popup | Qt.FramelessWindowHint)
comboBox_name.view().window().setAttribute(Qt.WA_TranslucentBackground)