pyqt5中,QComboBox()默认选择怎么置为空?
时间: 2024-02-15 15:05:11 浏览: 159
PyQt5重写QComboBox的鼠标点击事件方法
你可以使用 `QComboBox` 的 `setCurrentIndex()` 方法来将默认选择置为空。将 `setCurrentIndex()` 方法的参数设置为 `-1` 即可实现。具体的代码如下:
```
comboBox = QComboBox()
comboBox.addItem("Item 1")
comboBox.addItem("Item 2")
comboBox.addItem("Item 3")
comboBox.setCurrentIndex(-1)
```
这样,当你运行代码时,`comboBox` 中将没有任何默认选择。
阅读全文