I have the following line that removes all borders from my window forms. Is it possible to drag the form to a different part of the screen. For example by adding some sort of hidden bar the stop from which I would be able to drag?
Here is the code I use to hide the borders
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
Thanks,