I have a custom control inside an autoscroll panel. When the user control extends beyond the width of the panel, the scroll bars appear. When you then scroll any distance, and mousedown on the control, the scrollbar snaps back to 0. Does any one know why that might be? I'm pretty sure I am not trying to change the value of the scrollbar anywhere...
Thanks
EDIT: This only appears to happen once, the first time you click on it, every other time it works as expected
EDIT 2: It also happens when you bring a new window up, and then go back to the C# window
If you have a control (like a
TextBox
) that is much wider than it's container and you scroll to it's end, then click the control, you will be scrolled back to theLocation
of the control.The clicked control gains focus and the scrolling occurs automatically, that is standard behaviour of winforms.
If you want to negate that, you will have to intercept
SetAutoScrollPosition
of the container (ScrollableControl
) or use another mechanism to revert to the original position.If the control already has focus and you then scroll, clicking it again won't change the
AutoScrollPosition
of the container.