styleSheet QComboBox QListView 在将 UI 转换为 PY 后无法正常工作

问题描述 投票:0回答:0

我使用 Qt Designer 创建了我的第一个 UI,并将 UI 转换为 PY。 styleSheets QComboBox QListViewQComboBox 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;
}

in Qt Designer

after convert ui to py

styleSheet in PyCharm

我只尝试在 PyCharm 的 styleSheets QComboBox QListViewQComboBox QAbstractItemView 中一次删除一个行以了解哪一行给出了错误,但它没有给出结果。

pycharm pyqt5 qt-designer qcombobox qlistview
© www.soinside.com 2019 - 2024. All rights reserved.