I have a System.Windows.Forms.Panel with some content.
System.Windows.Forms.Panel
I am trying to programmatically scroll the panel (vertically) either up or down.
I have t
Try this:- panel.ScrollControlIntoView(childcontrol);
This should work. childcontrol is the particular control that you want to show in your display area.