SyntaxFix
Write A Post
Hire A Developer
Questions
With Winforms you can use Form.BackColor to do this. From within the Form's code:
BackColor = Color.LightPink;
If you mean a WPF Window you can use the Background property. From within the Window's code:
Background = Brushes.LightPink;