您好,登錄后才能下訂單哦!
怎么在pyqt5中利用ComboBox實(shí)現(xiàn)一個(gè)鼠標(biāo)點(diǎn)擊觸發(fā)事件?針對這個(gè)問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。
# MyComboBox.py from PyQt5.QtWidgets import QComboBox from PyQt5.QtCore import pyqtSignal class MyComboBox(QComboBox): clicked = pyqtSignal() #創(chuàng)建一個(gè)信號 def showPopup(self): #重寫showPopup函數(shù) self.clicked.emit() #發(fā)送信號 super(MyComboBox, self).showPopup() # 調(diào)用父類的showPopup()
# test_ui.py self.PrintersList = MyComboBox(self.groupBox) # 修改后 # self.PrintersList = QtWidgets.QComboBox(self.groupBox) # 修改前
# main_loop.py self.PrintersList.clicked.connect(self.scan_printer_list_slot) # 信號與槽函數(shù)的綁定 # 槽函數(shù)的實(shí)現(xiàn) def scan_printer_list_slot(self): print("掃描打印機(jī)并刷新列表")
補(bǔ)充:PyQt5中QComboBox實(shí)現(xiàn)多選功能
網(wǎng)上大佬太多了,寫的啥沒看懂,自己摸索著也寫了個(gè)出來,也勉強(qiáng)能用。
QComboBox實(shí)現(xiàn)多選功能
返回選中的文本列表
一鍵全選和取消全選功能
from PyQt5 import QtCore, QtGui, QtWidgets import sys class CheckableComboBox(QtWidgets.QComboBox): def __init__(self, parent=None): super(CheckableComboBox, self).__init__(parent) self.setModel(QtGui.QStandardItemModel(self)) self.view().pressed.connect(self.handleItemPressed) self.checkedItems = [] self.view().pressed.connect(self.get_all) self.view().pressed.connect(self.getCheckItem) self.status = 0 def handleItemPressed(self, index): #這個(gè)函數(shù)是每次選擇項(xiàng)目時(shí)判斷狀態(tài)時(shí)自動調(diào)用的,不用管(自動調(diào)用) item = self.model().itemFromIndex(index) if item.checkState() == QtCore.Qt.Checked: item.setCheckState(QtCore.Qt.Unchecked) else: item.setCheckState(QtCore.Qt.Checked) def getCheckItem(self): # getCheckItem方法可以獲得選擇的項(xiàng)目列表,自動調(diào)用。 for index in range(1,self.count()): item = self.model().item(index) if item.checkState() == QtCore.Qt.Checked: if item.text() not in self.checkedItems: self.checkedItems.append(item.text()) else: if item.text() in self.checkedItems: self.checkedItems.remove(item.text()) print("self.checkedItems為:",self.checkedItems) return self.checkedItems #實(shí)例化的時(shí)候直接調(diào)用這個(gè)self.checkedItems就能獲取到選中的值,不需要調(diào)用這個(gè)方法,方法會在選擇選項(xiàng)的時(shí)候自動被調(diào)用。 def get_all(self): #實(shí)現(xiàn)全選功能的函數(shù)(自動調(diào)用) all_item = self.model().item(0) for index in range(1,self.count()): #判斷是否是全選的狀態(tài),如果不是,全選按鈕應(yīng)該處于未選中的狀態(tài) if self.status ==1: if self.model().item(index).checkState() == QtCore.Qt.Unchecked: all_item.setCheckState(QtCore.Qt.Unchecked) self.status = 0 break if all_item.checkState() == QtCore.Qt.Checked: if self.status == 0 : for index in range(self.count()): self.model().item(index).setCheckState(QtCore.Qt.Checked) self.status = 1 elif all_item.checkState() == QtCore.Qt.Unchecked: for index in range(self.count()): if self.status == 1 : self.model().item(index).setCheckState(QtCore.Qt.Unchecked) self.status = 0 if __name__ == "__main__": app = QtWidgets.QApplication(sys.argv) dialog = QtWidgets.QMainWindow() mainWidget = QtWidgets.QWidget() dialog.setCentralWidget(mainWidget) ComboBox = CheckableComboBox(mainWidget) ComboBox.addItem("全選") for i in range(6): ComboBox.addItem("Combobox Item " + str(i)) dialog.show() sys.exit(app.exec_())
直接實(shí)例化一個(gè)Qcombox
使用ComboBox.addItem方法添加項(xiàng)目
調(diào)用ComboBox.checkedItems的屬性就能獲取到選中的文本列表
內(nèi)置函數(shù)基本都是自動的,統(tǒng)統(tǒng)不用管
調(diào)用checkedItems屬性的時(shí)候最后寫在ComboBox的槽函數(shù)里,這樣才能獲取到更改后的屬性,不然可能得到的會是空值。
定義一個(gè)槽函數(shù)self.get_checkedItems_slot用于獲取更改后的checkedItems屬性,下面三種ComboBox的信號槽選一種來用就行,推薦第一種。
ComboBox.activated.connect(self.get_checkedItems_slot) #推薦 ComboBox.highlighted.connect(self.get_checkedItems_slot) ComboBox.currentIndexChanged.connect(self.get_checkedItems_slot)
關(guān)于怎么在pyqt5中利用ComboBox實(shí)現(xiàn)一個(gè)鼠標(biāo)點(diǎn)擊觸發(fā)事件問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。