Reputation: 65
I want to change the Form Top Border BackGround Color.
To change the Text , i do this.Text = "New Title";
To change the FormHeader BackGround color, is there a property that it recognises?
Upvotes: 0
Views: 152
Reputation: 3424
Option 1:
Option 2:
Form border and headers are OS drawn so you need to access low level api's to modify their colors.
Look for code in: http://customerborderform.codeplex.com/
Upvotes: 2