vote up 0 vote down star
1

Is there any event in C# that fires when the form STOPS being moved. Not while its moving.

If there is no event for it, is there a way of doing it with WndProc?

flag

79% accept rate

3 Answers

vote up 3 vote down check

The ResizeEnd event fires after a move ends. Perhaps you could use that.

link|flag
I had no idea about this. Just checked, it works! Thanks – Andrija May 31 at 21:26
+1 - I obviously spent too much time doing web apps. – Fredrik Mörk May 31 at 21:28
Haha, nice one. Works perfectly thanks. – Ozzy May 31 at 21:40
vote up 2 vote down

This is not a failsafe solution, but it's pure .NET and it's dead simple. Add a timer to your form, set it to a relatively short delay (100-150 ms seemed OK for me). Add the following code for the Form.LocationChanged and Timer.Tick events:

private void Form_LocationChanged(object sender, EventArgs e)
{
    if (this.Text != "Moving")
    {
        this.Text = "Moving";
    }
    tmrStoppedMoving.Start();
}

private void Timer_Tick(object sender, EventArgs e)
{
    tmrStoppedMoving.Start();
    this.Text = "Stopped";
}

If you want more exact handling (knowing exactly when the mouse button is release in the title bar and such) you will probably need to dive into monitoring windows messages.

link|flag
vote up 0 vote down

Just set a flag to true when onmove events are fired. If a mouseup event happens and the flag is true, the form stopped being moved.

I admit this probably won't work in the case of a user moving a form via the keyboard, but that's pretty rare.

link|flag
The MouseUp event is very unlikely to be fired since moving the form is typically done using the title bar, and mouse events are not raised for mouse operations in that area. – Fredrik Mörk May 31 at 20:51
mouseup event doesnt fire if you move the form from the title bar part – Ozzy May 31 at 20:54

Your Answer

Get an OpenID
or

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