Click here to Skip to main content
15,913,941 members
Home / Discussions / C#
   

C#

 
AnswerRe: How set the background of an MDI container window? Pin
BillWoodruff29-Oct-11 4:00
professionalBillWoodruff29-Oct-11 4:00 
AnswerRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 4:43
Alisaunder29-Oct-11 4:43 
You can set the background by casting the type to MDIClient and setting the MDIClient background. EXAMPLE:

C#
private void Form1_Load(object sender, EventArgs e)
{
    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 = Color.White;
        }
        catch (InvalidCastException exc)
        {
            // Catch and ignore the error if casting failed.
        }
    }
}

AnswerRe: How set the background of an MDI container window? Pin
Luc Pattyn29-Oct-11 5:07
sitebuilderLuc Pattyn29-Oct-11 5:07 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak29-Oct-11 6:52
mveDave Kreskowiak29-Oct-11 6:52 
GeneralRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 10:52
Alisaunder29-Oct-11 10:52 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak29-Oct-11 14:24
mveDave Kreskowiak29-Oct-11 14:24 
GeneralRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 17:13
Alisaunder29-Oct-11 17:13 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak29-Oct-11 17:15
mveDave Kreskowiak29-Oct-11 17:15 
GeneralRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 17:16
Alisaunder29-Oct-11 17:16 
AnswerRe: How set the background of an MDI container window? Pin
Luc Pattyn29-Oct-11 17:48
sitebuilderLuc Pattyn29-Oct-11 17:48 
GeneralRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 17:52
Alisaunder29-Oct-11 17:52 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak29-Oct-11 17:55
mveDave Kreskowiak29-Oct-11 17:55 
GeneralRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 17:59
Alisaunder29-Oct-11 17:59 
GeneralRe: How set the background of an MDI container window? Pin
phil.o29-Oct-11 23:26
professionalphil.o29-Oct-11 23:26 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak30-Oct-11 3:24
mveDave Kreskowiak30-Oct-11 3:24 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak29-Oct-11 17:52
mveDave Kreskowiak29-Oct-11 17:52 
GeneralRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 18:02
Alisaunder29-Oct-11 18:02 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak30-Oct-11 3:16
mveDave Kreskowiak30-Oct-11 3:16 
GeneralRe: How set the background of an MDI container window? Pin
BobJanova30-Oct-11 23:09
BobJanova30-Oct-11 23:09 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak31-Oct-11 1:30
mveDave Kreskowiak31-Oct-11 1:30 
GeneralRe: How set the background of an MDI container window? Pin
BobJanova31-Oct-11 2:11
BobJanova31-Oct-11 2:11 
GeneralRe: How set the background of an MDI container window? Pin
BillWoodruff29-Oct-11 18:02
professionalBillWoodruff29-Oct-11 18:02 
GeneralRe: How set the background of an MDI container window? Pin
Alisaunder29-Oct-11 18:06
Alisaunder29-Oct-11 18:06 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak30-Oct-11 3:21
mveDave Kreskowiak30-Oct-11 3:21 
GeneralRe: How set the background of an MDI container window? Pin
BobJanova30-Oct-11 23:07
BobJanova30-Oct-11 23:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.