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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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