Completed
Last Updated: 13 Feb 2014 11:05 by ADMIN
ADMIN
Stefan
Created on: 12 Feb 2014 16:15
Category:
Type: Bug Report
1
FIX. RadListView - when the vertical scrollbar arrow is clicked the view is scrolled to the opposite end.
To reproduce:
- Add RadListView to a blank form and bind it to a datatable with large number of rows.
- Click the down arrow of the vertical scroll.

Workaround:

public class MyListView : RadListView
{
    protected override void OnMouseUp(System.Windows.Forms.MouseEventArgs e)
    {
        this.ListViewElement.ViewElement.VScrollBar.Capture = false;
        this.ListViewElement.ViewElement.VScrollBar.ThumbElement.Capture = false;


        base.OnMouseUp(e);
    }
    public override string ThemeClassName
    {
        get
        {
            return typeof(RadListView).FullName;
        }
    }
}
0 comments