Click here to Skip to main content
6,305,776 members and growing! (18,535 online)
Email Password   helpLost your password?
Languages » C# » General     Beginner License: The Code Project Open License (CPOL)

Single Instance Forms

By Ed.Poore

Single instance forms in an MDI application
C# 2.0.NET 2.0, Win2K, WinXP, Win2003, Vista, MonoVS2005, Dev
Posted:9 Sep 2007
Views:18,131
Bookmarked:43 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
20 votes for this article.
Popularity: 5.84 Rating: 4.49 out of 5
1 vote, 5.0%
1
1 vote, 5.0%
2
1 vote, 5.0%
3
2 votes, 10.0%
4
15 votes, 75.0%
5

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


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)
Occupation: Engineer
Company: PooreDesign
Location: United Kingdom United Kingdom

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 26 (Total in Forum: 26) (Refresh)FirstPrevNext
GeneralAn extended version Pinmemberbiopsy17:42 3 Jun '08  
GeneralRe: An extended version PinmemberEd.Poore22:33 3 Jun '08  
GeneralMemory leak PinmemberUtwig8:28 10 May '08  
GeneralRe: Memory leak PinmemberEd.Poore9:13 10 May '08  
GeneralRe: Memory leak PinmemberUtwig1:29 11 May '08  
GeneralRe: Memory leak PinmemberEd.Poore2:30 11 May '08  
GeneralRe: Memory leak PinmemberUtwig4:13 11 May '08  
GeneralRe: Memory leak PinmemberEd.Poore7:53 11 May '08  
GeneralRe: Memory leak PinmemberUtwig10:36 11 May '08  
GeneralRe: Memory leak PinmemberEd.Poore10:44 11 May '08  
GeneralRe: Memory leak PinmemberUtwig10:53 11 May '08  
GeneralThread locking PinmemberJens W9:21 10 Sep '07  
GeneralRe: Thread locking PinmemberEd.Poore9:25 10 Sep '07  
GeneralRe: Thread locking PinmemberJens W9:29 10 Sep '07  
GeneralRe: Thread locking PinmemberEd.Poore9:46 10 Sep '07  
GeneralRe: Thread locking PinmemberStuart Carnie14:38 10 Sep '07  
GeneralCool Pinmemberandalmeida6:41 10 Sep '07  
General5! Pinmembermartin_hughes3:24 10 Sep '07  
GeneralRe: 5! PinmemberEd.Poore3:36 10 Sep '07  
GeneralRe: 5! Pinmembermartin_hughes3:37 10 Sep '07  
GeneralAlternate solution Pinmembermaspr2:47 10 Sep '07  
GeneralRe: Alternate solution PinmemberEd.Poore3:09 10 Sep '07  
GeneralGot my 5 PinsupporterMarc Clifton2:31 10 Sep '07  
GeneralRe: Got my 5 PinmemberEd.Poore3:02 10 Sep '07  
GeneralRe: Got my 5 PinmvpColin Angus Mackay6:58 10 Sep '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 9 Sep 2007
Editor: Deeksha Shenoy
Copyright 2007 by Ed.Poore
Everything else Copyright © CodeProject, 1999-2009
Web18 | Advertise on the Code Project