C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Reviews   Communities   Interview   Jobs   Projects   Training   Your Ad Here    
Silverlight Games | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Polls | Revenue Sharing | Lobby | Gift Shop |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...






Resources » Articles » Visual Studio »

Multiple Document Interface (MDI) form


Posted Date: 23 Sep 2009    Resource Type: Articles    Category: Visual Studio
Author: Deepika HaridasMember Level: Diamond    
Rating: 1 out of 5Points: 30



Multiple Document Interface (MDI) form –

MDI form closely resembles a standard form with one major difference – the client area of an MDI form acts as a kind of container for other forms. It means that an MDI form also called an MDI parent form, can display MDI children in it, which is how the multiple document interfaces work.

Creating MDI Applications :

MDI forms are useful when the users want to open more than one document at a time.























Creating MDI Child Windows in Code :

For adding MDI child windows into our MDI parent form, first I’ll create a form class MDIChild and then i’ll create MDI child windows by creating and displaying a new object of the class each time the user clicks on New Option in File Menu bar in application. To make that new form object a child window of the MDI parent, MDIparent, we have to set its MdiParent property to the main window which also sets its IsMdiChild property to True. For working with number of child windows we need to store them in a array of forms.

Steps :

1. Add RichtextBox to MDIChild (to second form)

2. Set Dock property of Richtextbox to fill by clicking on the square shaped button in the properties window











3. Add following code in MDIParent.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

namespace MyWinForms

{

public partial class MDIParent : Form

{

int NumberofForms = 0;

MDIChild[] Forms = new MDIChild[11];

public MDIParent()

{

InitializeComponent();

}

private void MDIParent_Load(object sender, EventArgs e)

{

}

private void newToolStripMenuItem_Click(object sender, EventArgs e)

{

NumberofForms +=1;

Forms[NumberofForms] = new MDIChild();

Forms[NumberofForms].Text = "Document" + Convert.ToString(NumberofForms);

Forms[NumberofForms].MdiParent = this;

Forms[NumberofForms].Show();

}

}

}

4. Finally Run the application. Click on File -> New



























For more details, visit http://angeldeeps.blogspot.com/2009/08/multiple-document-interface-mdi-form.html



Responses


No responses found. Be the first to respond and make money from revenue sharing program.

Feedbacks      
Popular Tags   What are tags ?   Search Tags  
Sign In to add tags.
WinForms  .  Windows  .  Multiple document interface  .  MDI  .  

Post Feedback


This is a strictly moderated forum. Only approved messages will appear in the site. Please use 'Spell Check' in Google toolbar before you submit.
You must Sign In to post a response.
Next Resource: Difference between Web Site And Web Application
Previous Resource: Write Number into Words using VB 6.0
Return to Discussion Resource Index
Post New Resource
Category: Visual Studio


Post resources and earn money!
 
More Resources



dotNet Slackers

About Us    Contact Us    Privacy Policy    Terms Of Use