When I use this code to hide the windows border:
this.FormBorderStyle = FormBorderStyle.None;
I loose control of moving it around is there a way to add some code that will allow you to click and drag anywhere within the form itself?
When I use this code to hide the windows border:
this.FormBorderStyle = FormBorderStyle.None;
I loose control of moving it around is there a way to add some code that will allow you to click and drag anywhere within the form itself?
Short answer, no. There is no such thing built-in to WinForms. You will have to add an event handler on the client area and handle the window move yourself. To avoid duplicating answers, I send you back to this post