set QComboBox::down-arrow icon
时间: 2023-05-22 13:01:15 浏览: 277
QComboBox(下拉框)
To set the down-arrow icon for a QComboBox, you can use the following code:
```
QComboBox::down-arrow {
image: url(path/to/your/icon.png);
}
```
Replace "path/to/your/icon.png" with the path to your desired icon file.
阅读全文