1
I have a form with height larger than the screen, with many buttons and checkboxes, The user uses the scroll bar to scroll down and see all the content of the form.
My problem is that every time the user tries to click a button or checkbox, the form tries to center that button in the middle of the user’s screen, rolling the scroll bar by itself. This disturbs too much, sometimes you are reading something and need to activate a button, the form tries to center this button and scrolls the scroll bar, sometimes causes the user to lose the click and has to click again.
I saw that this is the default property behavior Autoscroll = true
; But they move to Autoscroll=false
, the scroll bar disappears.
Is there a way to fix this? Use visual studio 15, winforms
Why does the form center button?
– Weslley Rocha
That, I don’t want the panel to try to center the clicked item by rolling the scroll bar alone. I want the scroll bar to be where the user left it, even if the button he will click is right in the corner of the screen.
– Brugo