Is there a way to make a form that has no border (FormBorderStyle is set to \"none\") movable when the mouse is clicked down on the form just as if there was a border?
Adding a MouseLeftButtonDown event handler to the MainWindow worked for me.
MouseLeftButtonDown
In the event function that gets automatically generated, add the below code:
base.OnMouseLeftButtonDown(e); this.DragMove();