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;
}