Unresponsive form instance when instantiating form gets minimized

Posted by sjlewis on Stack Overflow See other posts from Stack Overflow or by sjlewis
Published on 2010-03-30T15:01:39Z Indexed on 2010/03/30 15:03 UTC
Read the original article Hit count: 547

Filed under:
|
|

There's form A is the main form that gets hidden and is accessible via NotifyIcon's context menu.

Form A instantiates form B via NotifyIcon's context menu also. Form B reacts to mouse events, etc. No problem there.

Form B instantiates form C. Form C reacts to mouse events, etc. No problem here as well, but when form B gets minimized, form C no longer reacts to mouse events (eg. can no longer move, button clicks do not respond).

Any idea why form C behaves like this in relation to form B getting minimized.

I also tried to instantiate form C through form A (eg. form B calling a method in form A to instantiate form C) but the same thing happens.

Is there any way to make form C respond even w/ form B (initiator) minimized?

© Stack Overflow or respective owner

Related posts about winforms

Related posts about c#