T
Tom Unkefer
If I set my form's IsMdiContainer property to TRUE at
design time, the form's BackColor automatically changes to
a dark gray. Setting the BackColor property to something
else has no effect.
If I set IsMdiContainer property to FALSE, I can control
the BackColor both at design time and runtime. But adding
the following to the form's load method:
Me.IsMdiContainer = True
causes the form to revert back to the dark gray at
runtime. Including something like
Me.BackColor = System.Drawing.Color.LightGray
has no effect.
Since no one has raised this question here, I must be
missing something pretty obvious. How can I control my
MDI container form's BackColor?
Thanks,
Tom
design time, the form's BackColor automatically changes to
a dark gray. Setting the BackColor property to something
else has no effect.
If I set IsMdiContainer property to FALSE, I can control
the BackColor both at design time and runtime. But adding
the following to the form's load method:
Me.IsMdiContainer = True
causes the form to revert back to the dark gray at
runtime. Including something like
Me.BackColor = System.Drawing.Color.LightGray
has no effect.
Since no one has raised this question here, I must be
missing something pretty obvious. How can I control my
MDI container form's BackColor?
Thanks,
Tom