You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Posted by tonyt on CP *
When in details view, the control does not scroll by the
correct LargeChange amount, and results in only a portion
of the first visible item shown. By convention, the top of
the first visible item's bounds should be at the top of the
control's content bounds.
I think the problem is that the ScrollBar's LargeChange
value is not correctly set to be a multiple of the item
height.
From: ImageListViewLayoutManager.cs:
// Current line for detail view:
mImageListView.vScrollBar.LargeChange = mItemAreaBounds.Height;
// This corrects the issue:
mImageListView.vScrollBar.LargeChange =
mItemSize.Height * ( mItemAreaBounds.Height / mItemSize.Height );
Original issue reported on code.google.com by oozcitak on 10 Mar 2010 at 9:14
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
oozcitak
on 10 Mar 2010 at 9:14The text was updated successfully, but these errors were encountered: