Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Change Back Color of MDI Parent form on its load.

0.00/5 (No votes)
18 Feb 2010 1  
How to change the background color for an MDI parent form in Visual C#This article demonstrates how to programmatically change the background color for a multiple-document interface (MDI) parent form by using Visual C#.When you use a Windows Form as an MDI parent form, the Application...
How to change the background color for an MDI parent form in Visual C#
This article demonstrates how to programmatically change the background color for a multiple-document interface (MDI) parent form by using Visual C#.
When you use a Windows Form as an MDI parent form, the Application Background color setting in Windows Control Panel, not the form's BackgroundColor property, determines the background color of the form. The following steps demonstrate how to programmatically change the MDI parent form's background color to another color.

Create a Sample Windows Application by Using Visual C#


Create a new Visual C# Windows application. Form1 is created by default. Click the form, and then, on the View menu, select Properties Window to view the properties for the form. Set the BackColor property to the color that you want (such as Blue).
Set the IsMDIContainer property to True. Note that the background color of the form changes to the color that the Application Background color is set to in Control Panel. Set the WindowState property to Maximized. Double-click the form to view its code window. Paste the following code into the form's Load event handler:
C#
MdiClient ctlMDI;
// Loop through all of the form's controls looking
// for the control of type MdiClient.
foreach (Control ctl in this.Controls)
{
   try
   {
      // Attempt to cast the control to type MdiClient.
      ctlMDI = (MdiClient) ctl;
      // Set the BackColor of the MdiClient control.
      ctlMDI.BackColor = this.BackColor;
   }
   catch (InvalidCastException exc)
   {
      // Catch and ignore the error if casting failed.
   }		         
}
		
// Display a child form to show this is still an MDI application.
Form2 frm = new Form2();
frm.MdiParent = this;
frm.Show();

On the Project menu, click Add Windows Form. Accept the default name Form2.cs, and then click Open.
Press F5 to run the application. Note that the MDI parent form loads and has a blue background.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here