1. 创建 QComboBox
QComboBox
是一个用于选择单个选项的下拉框,用户可以通过点击下拉箭头查看和选择选项。它支持添加文本选项以及设置默认选中的选项。
示例代码:
import sys
from PyQt5.QtWidgets import QApplication, QMainWindow, QComboBox
app = QApplication(sys.argv)
window = QMainWindow()
window.setWindowTitle("QComboBox Example")
window.setGeometry(300, 300, 400, 200)
# 创建 QComboBox
combo_box = QComboBox(window)
combo_box.setGeometry(50, 50, 200, 30) # 设置 QComboBox 的位置和大小
combo_box.addItems(["Option 1", "Option 2", "Option 3"]) # 添加选项
window.show()
sys.exit(app.exec_())