Using C#.
I am trying to move a Form without its title bar.
I found an article about it on: http://www.codeproject.com/KB/cs/csharpmovewindow.aspx
It works as long as I do not set FormBorderStyle as None.
Is there a way to make it work with this property set as None?
I know this question is over a year old, but I was searching trying to remember how I’ve done it in the past. So for anyone else’s reference, the quickest and less complex way then the above link is to override the WndProc function.
This will allow any form to be moved by clicking and dragging within the client area.