I believe that in the IsInputKey(Keys keyData) method of PanningZoomingScrollControl class was missed code to handle clicking on Left and Right buttons:
case Keys.Left:
PerformScroll(ScrollAction.LineUp, Orientation.Horizontal);
return true;
case Keys.Right:
PerformScroll(ScrollAction.LineDown, Orientation.Horizontal);
return true;
Hello,
I believe that in the IsInputKey(Keys keyData) method of PanningZoomingScrollControl class was missed code to handle clicking on Left and Right buttons:
Thanks,