赞
踩
正在做的项目遇到的问题 , 在缩略图列表中选择某一图,同时关联到图片list里高亮显示这个图片名字。
一开始我直接用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)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。