Completed
Last Updated: 30 Jan 2013 06:16 by ADMIN
ADMIN
Stefan
Created on: 30 Jan 2013 06:16
Category:
Type: Bug Report
1
FIX. RadListView - releasing the left mouse button over the selected item while scrolling starts editing of the item
WORKAROUND: class MyRadListView : RadListView { protected override void OnMouseUp(System.Windows.Forms.MouseEventArgs e) { if (this.ListViewElement.ViewElement.VScrollBar.Capture || this.ListViewElement.ViewElement.VScrollBar.ThumbElement.Capture) { return; } base.OnMouseUp(e); } public override string ThemeClassName { get { return typeof(RadListView).FullName; } } }
0 comments