我使用 Qt Designer 创建了我的第一个 UI,并将 UI 转换为 PY。
styleSheets QComboBox QListView
和 QComboBox QAbstractItemView
在转换后不起作用。
但在 Qt Designer 中,所有 styleSheet QComboBox
都在工作。
我使用 Python 3.9.13 和 PyCharm 社区版。
QComboBox {
border: 2px solid #0d7377;
border-radius: 20;
padding: 10px;
color: #eeeeee;
}
QComboBox::drop-down {
border: 0px;
}
QComboBox::down-arrow {
image: url(:/iconic/arrow.png);
width: 14px;
height: 14px;
margin-right: 15px;
}
QComboBox QAbstractItemView {
selection-background-color: #1a1a1a;
selection-color: #eeeeee;
}
QComboBox QListView {
border: 2px solid #0d7377;
border-radius: 15;
padding: 10px;
color: #0d7377;
outline: 0px;
}
我只尝试在 PyCharm 的 styleSheets QComboBox QListView
和 QComboBox QAbstractItemView
中一次删除一个行以了解哪一行给出了错误,但它没有给出结果。