-
-
关注
-
gezichong
-
gezichong
-
本版等级:
-
|
#3
得分:10
回复于:
2006-10-19 15:42:35
msdn帮助里面的..
Create a Sample Windows Application by Using Visual C# .NET
Create a new Visual C# .NET 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 LightBlue).
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:
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 light blue background.
|