Currently in my application I am using the HScrollBar and VScrollBar for panning around in a large image. The part of the image that is shown is based on the scrollbar\'s Va
Use something like this:
HScrollBarObject.SetStyle(ControlStyles.ResizeRedraw, true);
Try calling the scrollbar's Invalidate()
method in the form's resize event handler:
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.invalidate.aspx
That should cause it to redraw correctly after the form is resized.