QListView 滚动条的两种滚动模式

QListView 滚动条的两种滚动模式_第1张图片


一种是按Item滚动, 一种是按像素滚动.  两种方式 , 按需所用.


enum QAbstractItemView::ScrollMode
Constant	Value	Description
QAbstractItemView::ScrollPerItem	0	The view will scroll the contents one item at a time.
QAbstractItemView::ScrollPerPixel	1	The view will scroll the contents one pixel at a time.

setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);




你可能感兴趣的:(Qt)