当前位置:   article > 正文

PyQt5中的QComboBox_pyqt qcombobox

pyqt qcombobox


QComboBox对象显示一个下拉列表可供选择,是一个集按钮和下拉选项于一体的控件,也称做下拉列表框。

QComboBox常用属性和方法

  • addItem()可以增加图标选项,combox.addItem(QIcon(“monster.png”),‘带图标选项’)
名称描述
addItem()增加单个选项内容
addItems()增加多个, 参数为列表
Clear()删除下拉列表中的所有选项
Count()返回下拉列表中的所有项目数量
currentText()返回当前选中项的文本
itemText(i)获取索引为i的item文本
setItemText(i)设置索引为i的item文本
currentIndex返回当前选中项的索引

QComboBox常用信号

  • 信号会传递两个参数,一个是控件本身,一个是选中或者光标停留的index
名称描述
currentIndexChanged()下拉选项的索引发生变化时发射,如果本次选中的和之前的相同,则不会发射
activated()选中一个下拉选项的时候发射,不管是否和上次相同
highlight()不管焦点停留在哪个上面都会触发此信号,但是返回的currentText仍为蓝色显示的条目,而不是光标移动到的条目,传递的第二个参数是光标移动到的index

在这里插入图片描述

QComboBox举例

  • 创建QComboBox中的内容
  • 熟悉各个方法和信号
  • 将选中项显示在label中
import sys
from PyQt5.QtWidgets import *


class DemoQComboBox(QWidget):
    def __init__(self):
        super().__init__()
        self.setWindowTitle("DemoQComboBox Demo")
        self.resize(300, 150)
        self.init_ui()

    def init_ui(self):
        itmes = ["小日本真坏", "祖国万岁", "美帝国有点狂", "少年强则国强"]
        self.cbb = QComboBox()
        self.cbb.addItem("世界和平")
        self.cbb.addItems(itmes)
        lb1 = QLabel("请选择你喜欢的词条")
        self.lb2 = QLabel("你选择的是:")
        self.cbb.currentText()
        self.cbb.currentIndex()

        vbox = QVBoxLayout(self)
        vbox.addWidget(lb1)
        vbox.addWidget(self.cbb)
        vbox.addWidget(self.lb2)

        self.cbb.activated.connect(self.slot_cbb_active)
        # self.cbb.currentIndexChanged.connect(self.slot_index_change)
        # self.cbb.highlighted.connect(self.slot_hightlight)

    def slot_cbb_active(self, index):
        self.lb2.setText("你选中的词条是:" + self.cbb.currentText())
        print(index)
        print(self.cbb.currentText())

    def slot_index_change(self):
        self.lb2.setText("你想更改的词条是:" + self.cbb.currentText())
        print(self.cbb.currentText())
        print(self.cbb.currentIndex())

    def slot_hightlight(self):
        self.lb2.setText("你停留的词条是:" + self.cbb.currentText())
        print(self.cbb.currentText())
        print(self.cbb.currentIndex())


if __name__ == '__main__':
    app = QApplication(sys.argv)
    window = DemoQComboBox()
    window.show()
    sys.exit(app.exec())

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/560482
推荐阅读
相关标签
  

闽ICP备14008679号