vote up 0 vote down star

I have a modal dialog displayed with the main application window set as owner (as in dialog.ShowDialog(mainAppWindow)) and I would like to temporarily allow the user to interact with the main application window before returning to the modal dialog again.

How can I do this? I am using Windows Forms.

Edit: AutoCAD does this well.

flag

48% accept rate

5 Answers

vote up 1 vote down

Just close the modal dialog. It doesn't get disposed like normal Form instances do so you simply bring it back alive by calling ShowDialog() again. Note that calling Hide() on a modal dialog also closes it.

link|flag
vote up 1 vote down

You need to enable the parent window again. For modal dialogs, Windows automatically disables the parent window and reenables it if the modal dialog was closed.

I haven't tried, but it should be sufficient to set the Enabled property of your parent form to true. If that doesn't work using the EnableWindow Win32 API does work.

link|flag
"For modeless dialogs, Windows automatically disables the parent window" I don't think so. Neither is it true for modal dialogs. What Windows does is run a secondary message loop, preventing most messages other than WM_PAINT from reaching the dialog owner (owner != parent btw). – Agnel Kurian Mar 30 at 9:05
Ok, modeless was a typo. But it is true that the parents of modal dialogs are disabled. You can check this for yourself using Spy++. If done enough tinkering with them to be certain of that. The additional message loop does not prevent the parent from receiving messages interacting with the user. – __grover Mar 30 at 9:50
vote up 0 vote down

The modal/modeless paradym is that if you want the user to be able to interact with the main application, use a modeless window and if you don't, use a modal. If you want to stop him using the main application - but then use it - but then not use it - your user interface design does not work with the modal/modeless paradym.

link|flag
"Paradigm". Sorry, it was bugging me. – Ed Swangren Mar 30 at 6:55
I'm certain I've seen "paradym"...? or perhaps it's just a popular mis-spelling? – Blank Xavier Mar 30 at 19:12
vote up 1 vote down

Take a look at http://en.wikipedia.org/wiki/Modal_window#Criticisms... There's a school of thought that you shouldn't use modal windows in the first place.

link|flag
1  
I agree, can't stand 'em. – Ed Swangren Mar 30 at 6:44
vote up 12 vote down

Then I do not think that you want a modal dialog...

The whole purpose of a modal dialog is that the user cannot do anything until they have gotten rid of it in some way. I think that you should just create your own form class to act the way that you would like.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.