Unplanned
Last Updated: 30 Mar 2016 13:05 by ADMIN
ADMIN
George
Created on: 12 Nov 2014 15:04
Category:
Type: Bug Report
1
FIX. RadScrollablePanel - if no inner control is focused RadScrollablePanel cannot be scrolled with the MouseWheel
To reproduce:

Add a RadScrollablePanel and a button at a location of 500, 1000. Start the app and click the panel(not the button) you will see that you cannot scroll the panel.

Workaround:

Subscribe to the MouseWheel event of RadScrollablePanel:

void RadScrollablePanel_MouseWheel(object sender, MouseEventArgs e)
{
    typeof(Control).GetMethod("OnMouseWheel", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic).Invoke(scrollablePanel.PanelContainer,
        new object[] { e });
}
0 comments