Modal Window Locking Only Immediate Parent Window

  • Thread starter Thread starter CodeChamp
  • Start date Start date
C

CodeChamp

Hello,

I did my initial search on this to get done, and now hoping that
someone will come up and hel me.

Scenario is:

When I execute my application it opens the Shell(Windows Form), which
contains access to different modules of the application.

Now I open a Module window(Windows Form) which groups all the
functionalities pertaining to a single specific module. I open a Modal
Window from this Module Form, such that I want my user to either
complete the task or close the window before he can access the Module
window. Everything works fine here but the problem is this modal
window blocks the access to the Shell as well which is not desired.

So is there any solution that only immediate parent locks not all the
parent windows.

Thanks!
 
You could show the last form non-modally, and disable the module form
(Enabled=false).
 
Back
Top