Completed
Last Updated: 18 Nov 2016 13:34 by ADMIN
ADMIN
Dimitar
Created on: 14 Nov 2016 09:41
Category: LayoutControl
Type: Bug Report
1
FIX. RadLayoutControl - the items are moved few pixels when the mouse wheel is used over the control.
The attached video shows how this can be reproduced. 

Workaround: 
private void RadLayoutControl1_MouseWheel(object sender, MouseEventArgs e)
{
    HandledMouseEventArgs ee = (HandledMouseEventArgs)e;
    ee.Handled = true;
}
Attached Files:
0 comments