Form move finished

  • Thread starter Thread starter Frank
  • Start date Start date
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);
}
 
Back
Top