Reputation: 1059
I have a window application that has a window form. I have to change this window form header text (Font Size and Font family etc). I am unable to do this. I am attaching an image for better understanding.
Upvotes: 4
Views: 10701
Reputation: 10026
You can do this via the Style Libraries in the Custom Border Form project on CodePlex.
There are currently three skins available: Longhorn, Vista, and WMP. There are some demo usages as well on the site.
Alternatively there is also WinForms SkinFramework available on CodeProject.
The problem lies in the fact that WinForms is a managed wrapper around the native Windows UI elements. So the font and other styling is ultimately controlled via the Operating System theme (Aero in this case).
Upvotes: 2