Click here to Skip to main content
15,910,872 members
Home / Discussions / C#
   

C#

 
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? PinPopular
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 
Apparently you haven't been reading the posts.

You also apparently won't be happy until you see actual code:
private void MdiClientExample()
{
    foreach (Control c in this.Controls)
    {
        if (c is MdiClient)
        {
            MdiClient mc = (MdiClient)c;
            ...
        }
    }
}

Are you happy now?

Oh, and by the way, I don't consider this production quality code either. It's just cleaner than the example Microsoft gave.

And if you're going to critisize us, you might want to start by creating your own code samples instead of lifting and posting others as your own work.

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 
GeneralRe: How set the background of an MDI container window? Pin
RichardGrimmer2-Nov-11 7:09
RichardGrimmer2-Nov-11 7:09 
GeneralMy vote of #3 ... Re: How set the background of an MDI container window? PinPopular
BillWoodruff29-Oct-11 17:37
professionalBillWoodruff29-Oct-11 17:37 
AnswerRe: How set the background of an MDI container window? Pin
phil.o29-Oct-11 23:15
professionalphil.o29-Oct-11 23:15 
GeneralRe: How set the background of an MDI container window? Pin
Dave Kreskowiak30-Oct-11 3:23
mveDave Kreskowiak30-Oct-11 3:23 
AnswerRe: How set the background of an MDI container window? Pin
Ravi Bhavnani30-Oct-11 12:06
professionalRavi Bhavnani30-Oct-11 12:06 
QuestionMdi Form Pin
jojoba2029-Oct-11 1:14
jojoba2029-Oct-11 1:14 
AnswerRe: Mdi Form Pin
tgurlevik29-Oct-11 2:43
tgurlevik29-Oct-11 2:43 
AnswerRe: Mdi Form Pin
Dave Kreskowiak29-Oct-11 3:15
mveDave Kreskowiak29-Oct-11 3:15 

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.