PyQt5-Qt DesignerQComboBox-下拉列表框

Posted xjt2018

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PyQt5-Qt DesignerQComboBox-下拉列表框相关的知识,希望对你有一定的参考价值。

知识点:

1、QComboBox下拉列表框的一些常用方法

2、下拉列表框常用信号使用方法

技术分享图片

案例:选中下拉框选项时触发信号

技术分享图片

#[str] 表示comboBox中的选择框内容如A B C D 等
self.comboBox.activated[str].connect(self.BrushPhoto)

定义的BrushPhoto(self) 函数

技术分享图片
def BrushPhoto(self, text):
        if text=="A":
            self.graphicsView_5.setStyleSheet("border-image: url(:/brush/photo/brush/A.png);")
            self.lineEdit_58.setText("刷子A")
        elif text=="B":
            self.graphicsView_5.setStyleSheet("border-image: url(:/brush/photo/brush/B.png);")
            self.lineEdit_58.setText("刷子B")
        elif text=="C":
            self.graphicsView_5.setStyleSheet("border-image: url(:/brush/photo/brush/C.png);")
            self.lineEdit_58.setText("刷子C")
        elif text=="D":
            self.graphicsView_5.setStyleSheet("border-image: url(:/brush/photo/brush/D.png);")
            self.lineEdit_58.setText("刷子D")
        elif text=="E":
            self.graphicsView_5.setStyleSheet("border-image: url(:/brush/photo/brush/E.png);")
            self.lineEdit_58.setText("刷子E")
        elif text=="F":
            self.graphicsView_5.setStyleSheet("border-image: url(:/brush/photo/brush/F.png);")
            self.lineEdit_58.setText("刷子F")
BrushPhoto 函数

 


以上是关于PyQt5-Qt DesignerQComboBox-下拉列表框的主要内容,如果未能解决你的问题,请参考以下文章

PyQt5-Qt Designer日历(QCalendarWidget)

PyQt5-Qt DesignerQProgressBar() 进度条

PyQt5-Qt Designer窗口操作

PyQt5-Qt Designer鼠标+键盘事件

PyQt5-Qt DesignerpyqtSignal()-高级自定义信号与槽

PyQt5-Qt Designer工具箱(QToolBox)控件的使用