How can I change the BACKGROUND color of the MDI FORM in C#?
I changed it using the background color property but the color is not changed.
What should I
Write this in your load method of your MDI form.
Controls.OfType().FirstOrDefault().BackColor = Color.Purple;