Tutorials Navigation
C# Allow only 1 instance of a form to be opened
Tutorial Name: C# Allow only 1 instance of a form to be opened
Category: PC Tutorials
Submitted By: Zero1UP
Date Added:
Comments: 2
Views: 4,085
Related Forum: PC Building Forum
Share:
In this example I will show you how to only allow one instance of a form to be open when using MDI parent forms.
An MDI parent form acts as a container in which you are able to open other forms inside of. If you have a multiform application this can help with screen clutter since it will be self contained.
To make a form an MDI parent head over to the form properties and set IsMdiContainer to true.
Any form that you wish to open in this form, you would set their mdiParent to this form. However the code below will handle this for you.
//Code that handles Child forms. May be adding more code to this down the road for customization.
//No need to write the same code for every form
private void CreateMDIChild(Form childForm)
{
//Checks if child form already exists. Only open if it does not exist in the collection
FormCollection allForms = Application.OpenForms;
bool formOpened = false; //Assume that this form does not already exist
foreach (Form frm in allForms)
{
if (frm.Name == childForm.Name)
{
//set it to true
formOpened = true;
}
}
//As long as formOpened is false we can open the new form as a child form to the parent
if (formOpened == false)
{
childForm.MdiParent = this;
childForm.Show();
}
}
Using the method
private void loginRegisterToolStripMenuItem_Click(object sender, EventArgs e)
{
CreateMDIChild(new frm_LoginRegister());
}
Ratings
Comments
Related Tutorials
- 01. Emulating Xbox 360 on PC for Running COD4 With Mods(3,532)
- 02. How to: Matrix Numbers | Batch File(1,915)
- 03. How to Password Protect Files on Windows(859)
- 04. How to play Socom 2/3/ and Combined Assault on PC(6,756)
- 05. Modern Warfare 2 Vac Ban Bypass Tutorial(6,178)
- 06. How to embed an image on TheTechGame(3,106)
- 07. [PC] NIOH 2 OTHER USER SAVE RESIGN(13,022)
- 08. Host bot lobbies! Full Tutorial!(11,377)
- 09. Unban yourself [Plutonium BO2](14,266)
- 10. Fall Guys - How to Change Your Name Color on Fall Guys(8,397)
- 11. Best Crosshair Settings for Valorant(6,535)
- 12. Othercide The Surgeon Boss Guide(2,550)
- 13. Othercide Remembrances Unlock Guide(4,479)
- 14. Othercide Beginners Tips and Tricks(2,720)
- 15. How to Fix Grounded Crashes, Loading Time, Low FPS and Other(4,859)
"C# Allow only 1 instance of a form to be opened" :: Login/Create an Account :: 2 comments