This code is changing my Main Form background color after I open it.
private void button1_Click(object sender, EventArgs e)
{
this.IsMdiContainer = true;
NewCustomer openform1 = new NewCustomer();
openform1.MdiParent = this;
openform1.Show();
}
Also is creating a border in the top of my borderless form.