今天就跟大家聊聊有关如何在PyQt5中使用QListView实现一个代码高亮功能,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
使用setCurrentIndex(int) 来设置
if msg == "CAM1_Label_1": self.showCamOnTopScreen(0) self.device_listView.setCurrentIndex(0)
结果报错,提示
“setCurrentIndex(self, QModelIndex): argument 1 has unexpected type 'int'”
后来发现此处不能直接用int , 而应该跟用初始化时的model.index() 来设置。
修改如下:
if msg == "CAM1_Label_1": self.showCamOnTopScreen(0) idx = self.devicelistModel.index(0) self.device_listView.setCurrentIndex(idx)
补充:pyqt5 Qlistiew指定index显示
要求:
根据实验步骤, 指定显示当前的流程在哪个步骤。记录一下
# QListView使用from PyQt5.QtWidgets import QMessageBox, QListView, QStatusBar, QMenuBar, QMenu, QAction, QLineEdit, QStyle, \ QFormLayout, QVBoxLayout, QWidget, QApplication, QHBoxLayout, QPushButton, QMainWindow, QGridLayout, QLabelfrom PyQt5.QtGui import QIcon, QPixmap, QStandardItem, QStandardItemModelfrom PyQt5.QtCore import QStringListModel, QAbstractListModel, QModelIndex, QSizeimport sysclass WindowClass(QMainWindow): def __init__(self, parent=None): super(WindowClass, self).__init__(parent) self.layout = QVBoxLayout() self.resize(200, 300) listModel = QStringListModel() listView = QListView() items = ["step0", "step1", "step2", "step3"] listModel.setStringList(items) listView.setModel(listModel) # 修改index的参数 ,即可指定当前的那个索引被选中 listViewindex = listModel.index(1) listView.setCurrentIndex(listViewindex) listView.clicked.connect(self.checkItem) self.layout.addWidget(listView) widget = QWidget() widget.setLayout(self.layout) self.setCentralWidget(widget) def checkItem(self, index): QMessageBox.information(self, "ListView", "选择项是:%d" % (index.row()))if __name__ == "__main__": app = QApplication(sys.argv) win = WindowClass() win.show() sys.exit(app.exec_())
在listViewindex = listModel.index(3)
和在listViewindex = listModel.index(1)
的情况下 的情况下
要注意判断输入的index的范围,
看完上述内容,你们对如何在PyQt5中使用QListView实现一个代码高亮功能有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注编程网行业资讯频道,感谢大家的支持。