pyqt 取combobox的值
时间: 2023-07-04 07:06:14 浏览: 137
Qt combobox
4星 · 用户满意度95%
可以使用 `currentText()` 方法获取 `QComboBox` 中当前选中的文本值,例如:
```python
from PyQt5.QtWidgets import QApplication, QComboBox
app = QApplication([])
# 创建一个 QComboBox
combo_box = QComboBox()
combo_box.addItems(['Python', 'Java', 'C++'])
# 获取当前选中的文本值
selected_text = combo_box.currentText()
print(selected_text)
app.exec_()
```
运行该代码会输出当前选中的文本值。
阅读全文