vote up 1 vote down star

I have a borderless window (BorderStyle = None) where I would like to allow the user to click on the background (anywhere but one of the child controls) and move it around.

How would I go about doing that?

Thank you,

flag

2 Answers

vote up 2 vote down check

Try this.

http://www.codeproject.com/KB/cs/csharpmovewindow.aspx

link|flag
vote up 0 vote down

You just need to override OnMouseDown/OnMouseMove/OnMouseUp. These three methods provide the mouse events to move your form.

When the mouse is pressed, just track the mouse location. On move events, move the form with the mouse, and when the mouse is released, stop "moving".

link|flag
The SendMessage/ReleaseCapture way is much better since it lets the Window Manager handle the form movement. – Johannes Rössel Aug 3 at 23:37
It's nice, if you're willing to PInvoke. There are times when platform invoke is not desired, though, in which case this works as well. – Reed Copsey Aug 3 at 23:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.