Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Form Move Stopped Event

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?

like image 978
Ozzy Avatar asked May 31 '09 20:05

Ozzy


1 Answers

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

like image 165
Adam Ruth Avatar answered Sep 23 '22 17:09

Adam Ruth