I am currently creating a windows forms app that switches through multiple forms to display different screens. One annoying thing is that when i switch from one form to the next, it moves the new form window down a little from the last one. EX:
form1
form2
form3
form4
I'm using .Hide() and .Show() to switch between the forms.
Is there a way to prevent this? As in, when i open form2, can I have it in the exact same spot that form1 was in?
I am using VS2017 if that helps at all.