C# Form Move Stopped Event

Ozzy picture Ozzy · May 31, 2009 · Viewed 9.7k times · Source

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?

Answer

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