Click here to Skip to main content
Click here to Skip to main content

Single Instance Forms

By , 9 Sep 2007
 

Introduction

Recently in the C# forum, someone asked about how to ensure single instances of certain forms in an MDI application. In my reply, I used generics and an anonymous delegate to create a slightly more versatile solution to his problem. In his response, he requested an explanation of these topics and perhaps to write (this) an article explaining the code.

The Code

So here are the critical pieces of code in the implementation:

private Dictionary<Type, Form> SingleInstanceForms = new Dictionary<Type, Form>();

protected Form ActivateForm<T>() where T : Form, new()
{
    if (!this.SingleInstanceForms.ContainsKey(typeof(T)))
    {
        T newForm = new T();
        // Set up the necessary properties
        newForm.MdiParent = this;
        newForm.FormClosed += new FormClosedEventHandler
            (delegate(object sender, FormClosedEventArgs e)
        {
            this.SingleInstanceForms.Remove(sender.GetType());
        });
        
        this.SingleInstanceForms.Add(typeof(T), newForm);
    }
    Form formToActivate = this.SingleInstanceForms[typeof(T)];
    formToActivate.Show();
    formToActivate.Activate();

    return formToActivate;
}

That is, in fact, all the code that is required to enforce single instances of certain forms.

Using the Code

To activate (and if need be, create) the desired form, you simply use the following code:

this.ActivateForm<FormType>();

Explanation of the Code

Dictionary

The dictionary is central to the code, it stores the instances of the forms already displayed in the MDI parent, the key associated with it is the Type of the form. The dictionary structure automatically provides us with the means to check whether a Form has been opened previously.

There are advantages and disadvantages to using this. One of the advantages has already been mentioned. The disadvantage is that extra code is required to manage the dictionary, however I feel that this is minor when you contemplate that the only other solution would be to loop through all the existing forms and this will take longer depending on how many forms are open. At the cost of a bit of memory, it is a good solution.

ActivateForm

protected Form ActivateForm<T>() where T : Form, new() { }

This method declaration uses generics to restrict the types being passed to the method with the constraints Form, new(), i.e. T must be of type Form and must have a default constructor.

The method starts of by checking to see if the form's type exists in the dictionary. If not, then it creates a new instance of the form, sets up the necessary properties and adds it to the dictionary.

Anonymous Delegate

The lines of code are as follows:

newForm.FormClosed += new FormClosedEventHandler
    (delegate(object sender, FormClosedEventArgs e)
        {
            this.SingleInstanceForms.Remove(sender.GetType());
        });

It could be rewritten as follows:

newForm.FormClosed += new FormClosedEventHandler(this.MdiChild_FormClosed);
private void MdiChild_FormClosed(object sender, EventArgs e)
{
    this.SingleInstanceForms.Remove(sender.GetType());
}

There are plenty of good explanations of anonymous delegates on the Web, so I won't try and explain those. However the reason the delegate was used rather than a separate method is that it makes the ActivateForm method more compact, i.e. in the source code view, rather than the generated IL.

History

  • 9th September, 2007: Initial post

License

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

About the Author

Ed.Poore
Engineer PooreDesign
United Kingdom United Kingdom
Member
Ed is a student who due to a form of cancer (now clear) took a year out before going to Imperial College, London to study Electronic Engineering.
 
His interests include shooting (clay-pigeon (shotgun), air-rifle and rifle), playing with his three labradors (Sandy, Rosie and Tundra), programming (most experienced in C# and C, although those are not the only ones), walking (has completed Gold Duke of Edinburgh's Award), playing games and reading.
 
He lives in two places on a 57 acre farm in West Waleswith the rest of the family during the holidays; and Greater London during term time.
 
Languages and Technologies: C#, C, VB6, VB.NET, XAML, (X)HTML, CSS, XSLT, Assembler (PIC), ASP.NET, WPF, Windows.Forms, ASP, VBScript, JavaScript, Pascal / Delphi, XML
 
Current Stuff:
1st Year MEng Electronics Engineering (Imperial College, London)

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralAn extended versionmemberbiopsy3 Jun '08 - 16:42 
GeneralRe: An extended versionmemberEd.Poore3 Jun '08 - 21:33 
GeneralMemory leakmemberUtwig10 May '08 - 7:28 
GeneralRe: Memory leakmemberEd.Poore10 May '08 - 8:13 
GeneralRe: Memory leakmemberUtwig11 May '08 - 0:29 
GeneralRe: Memory leakmemberEd.Poore11 May '08 - 1:30 
GeneralRe: Memory leakmemberUtwig11 May '08 - 3:13 
GeneralRe: Memory leakmemberEd.Poore11 May '08 - 6:53 
GeneralRe: Memory leakmemberUtwig11 May '08 - 9:36 
GeneralRe: Memory leakmemberEd.Poore11 May '08 - 9:44 
GeneralRe: Memory leakmemberUtwig11 May '08 - 9:53 
GeneralThread lockingmemberJens W10 Sep '07 - 8:21 
GeneralRe: Thread lockingmemberEd.Poore10 Sep '07 - 8:25 
GeneralRe: Thread lockingmemberJens W10 Sep '07 - 8:29 
GeneralRe: Thread lockingmemberEd.Poore10 Sep '07 - 8:46 
GeneralRe: Thread lockingmemberStuart Carnie10 Sep '07 - 13:38 
GeneralCoolmemberandalmeida10 Sep '07 - 5:41 
General5!membermartin_hughes10 Sep '07 - 2:24 
GeneralRe: 5!memberEd.Poore10 Sep '07 - 2:36 
GeneralRe: 5!membermartin_hughes10 Sep '07 - 2:37 
GeneralAlternate solutionmembermaspr10 Sep '07 - 1:47 
GeneralRe: Alternate solutionmemberEd.Poore10 Sep '07 - 2:09 
GeneralGot my 5protectorMarc Clifton10 Sep '07 - 1:31 
GeneralRe: Got my 5memberEd.Poore10 Sep '07 - 2:02 
GeneralRe: Got my 5mvpColin Angus Mackay10 Sep '07 - 5:58 
GeneralRe: Got my 5memberEd.Poore10 Sep '07 - 6:25 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 9 Sep 2007
Article Copyright 2007 by Ed.Poore
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid