//Friends use this code snippets at the load event of the MDI form.
private void Dashboard_Load(object sender, EventArgs e)
{
MdiClient chld;
foreach (Control ctrl in this.Controls)
{
try
{
chld = (MdiClient)ctrl;
chld.BackColor = this.BackColor;
}
catch (InvalidCastException exe)
{
}
}
}