Form move finished

  • Thread starter Thread starter Frank
  • Start date Start date
F

Frank

Hello,

does anybody knows how to detect, if a form move was finished?

Thanks

Frank
 
Hi Frank,

don't give up so early! The following code do this:

protected override void WndProc(ref Message m) {
if(m.Msg == 0x0232) {
// ... do your final action
}
base.WndProc(ref m);
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top