Click here to Skip to main content
Licence CPOL
First Posted 21 Dec 2009
Views 14,904
Downloads 629
Bookmarked 19 times

MDI child as dialog form (MDI modal workaround)

By | 21 Dec 2009 | Article
Ever had the need to block all other forms and controls when a specific form is shown as a dialog? This is a very simple workaround, for an MDI modal form.

Introduction

Ever had the need to block all other forms and controls when a specific form is shown as a dialog? This is a very simple workaround, for an MDI modal form.

Background

I was designing an MDI rich application, where I needed a dialog form showing only in the parent form, and blocking the rest of the application, until the user selected something on the dialog form.

Using the code

The code is very, very simple; just inherit the MDIParent form on your MDI parent form instead of the normal form inheritance.

public partial class Your_MDI_Parent_Form : MdiParent

To show a form as a dialog and block other controls, call the ShowChildDialog method on the parent form, like this:

ChildForm frm = new ChildForm();
ShowChildDialog(frm, ChildForm_DialogReturned);

And, to receive the DialogResult from the child form, use the following event receiver:

private void ChildForm_DialogReturned(object sender, DialogResultArgs e)
{
    MessageBox.Show("ChildForm returned: " + e.Result.ToString());
    ((Form)sender).Dispose();
}

Explanation of the code

The ShowChildDialog method

public void ShowChildDialog(Form frm, 
       EventHandler<DialogResultArgs> DialogReturnedValue)
{
    frm.MdiParent = this;
    frm.MaximizeBox = false;
    frm.FormClosed += new FormClosedEventHandler(frm_FormClosed);
    callingsender = frm;
    DialogReturning += DialogReturnedValue;
    DisableControls();
    frm.Show();
}
  1. Set the MDI parent so the form is shown within the parent.
  2. Remove the Maximize button on the child form.
  3. Add an event receiver for the Closed event on the child form; this will be used to return the dialog result from the child dialog form.
  4. callingsender is for internal use, so the code knows which form it is dealing with.
  5. Add an event receiver for the returned dialog result.
  6. Calling the DisableControls method will disable all other controls and forms in the MdiParent.
  7. Last, show the form. This will be the only one enabled.

The DisableControls method

private void DisableControls()
{
    for (int i = 0; i < this.Controls.Count; i++)
    {
        if (this.Controls[i].GetType() != typeof(MdiClient))
            this.Controls[i].Enabled = false;
    }
    foreach (Form frm in MdiChildren)
        frm.Enabled = false;
    if(callingsender != null)
        callingsender.Enabled = true;
}
  1. Loop through all the controls of the MDI parent and disable them if it not an MDI child control.
  2. Loop through all the child forms and disable them.
  3. If callingsender is not null, then enable it again.

The ForceReleaseOfControls method

public void ForceReleaseOfControls()
{
    for (int i = 0; i < this.Controls.Count; i++)
        this.Controls[i].Enabled = true;
    
    foreach (Form frm in MdiChildren)
        frm.Enabled = true;
}
  1. Loop through all the controls and enable them again.
  2. Loop through all the child forms and enable them again.

What the code does not do...

This code does not check for the pre-enabled-state of controls and forms. Therefore, it will not remember what enable state the control/form was before, and set it back to that. This can be achieved pretty simply by having a collection of keys and values. But for now, this is the code. Hope it helps those who have the same issues as I did.

Point of interest

I learnt something new about MDI applications.

History

  • 21. Dec. 2009: First post.
  • 21. Dec. 2009 (later): Updated the article with some explanation of the code.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Paw Jershauge

Software Developer

Denmark Denmark

Member

blog: C# And I
About.me Paw Jershauge
ListView Group Sorter
An Code Generator, for making SQL table into .Net Classses (2nd place in the Code Generation 2008 Competition)
A Class for getting the Rss feed list of a website
Seagate Date Code Calculator
DNSBL lookup Class
Base N converter (N = 10-62)
Lightweight Directory Access Protocol Uniform resource identifier (LDAPUri)
LoginHours from DirectoryEntry into boolean array

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmemberimransandh18:31 26 Feb '12  
GeneralMy vote of 3 Pinmemberh7lmi16:10 29 Oct '11  
QuestionInteresting but .... does not work in VBasic [modified] Pinmemberarzamm@hotmail.com13:36 29 Sep '11  
AnswerRe: Interesting but .... does not work in VBasic PinmemberPaw Jershauge12:23 30 Sep '11  
GeneralRe: Interesting but .... does not work in VBasic Pinmemberarzamm@hotmail.com6:54 3 Oct '11  
GeneralRe: Interesting but .... does not work in VBasic Pinmemberarzamm@hotmail.com8:33 3 Oct '11  
GeneralRe: Interesting but .... does not work in VBasic PinmemberPaw Jershauge1:43 4 Oct '11  
GeneralRe: Interesting .... and it works good in VBasic [modified] Pinmemberarzamm@hotmail.com7:13 4 Oct '11  
GeneralMy vote of 3 Pinmemberjonthan349:16 11 Aug '10  
GeneralRe: My vote of 3 PinmemberPaw Jershauge2:27 26 Oct '10  
GeneralMy vote of 2 Pinmemberbehzad20006:28 11 Mar '10  
GeneralRe: My vote of 2 PinmemberPaw Jershauge8:55 25 Mar '10  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 21 Dec 2009
Article Copyright 2009 by Paw Jershauge
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid