关键字:QT,QComboBox,QLineEdit,QListViewOS:Windows 7问题链接:QComboBox: Can we make the entire combobox clickable, not just the dropdown button (arrow) itself...
分类:
其他好文 时间:
2015-07-22 22:20:35
阅读次数:
5972
#QListView控件多选设置self.ui.listView.setSelectionMode(QAbstractItemView.ExtendedSelection)#初始化QListView控件焦点事件self.ui.listView.installEventFilter(self) #焦点...
分类:
其他好文 时间:
2015-06-29 00:19:00
阅读次数:
853
1.往QListView控件内写入数据strlist=QStringList()strlist.append('hello')strm=QStringListModel(strlist)self.ui.listView.setModel(strm)2.QListView加入复选框self.model...
分类:
其他好文 时间:
2015-06-28 22:54:43
阅读次数:
1349
defPhotosvisi(self):i=0self.lists.setIconSize(QtCore.QSize(70,70))#设置显示图片大小self.lists.setResizeMode(QtGui.QListView.Adjust)self.lists.setViewMode(QtGu...
分类:
其他好文 时间:
2014-07-30 23:45:05
阅读次数:
2112
在使用 QTableView 或 QTableWidget 时,有时我们不想要选中虚框,可以实现一个 ItemDelegate ,重写 drawFocus() 和 drawCheck() 两个虚函数,然后调用 QAbstractItemView 的 setItemDelegate() 把自定义的 itemDelegate 对象传递给 QTableView 即可。需要注意的是,QAbstractItemView 不会删除你设置给它的 ItemDelegate ,需要开发者自己在合适的时候删除它。...
分类:
移动开发 时间:
2014-05-21 16:28:24
阅读次数:
327
使用了几种办法
1:使用Qt下面的QListview来实现QQ类似效果,差强人意
2:使用QWebview加载html css样式来完成,发现效果不错,但是毕竟webview占用巨大的内存
3:使用QTextBrower加载css,但是好像只支持css2.1版本,css3完全不支持,这样的话,花哨的样式应该是无法实现...
分类:
其他好文 时间:
2014-05-18 15:02:04
阅读次数:
500