Reputation: 14460
Is it possible to change the height or style of the header in windows-form
.
I did look for the property where I can change the header but didn't found anything.
Is it possible with standard form or by creating own custom-control
?
Upvotes: 3
Views: 1753
Reputation: 21855
No, you cannot change the Chrome with WinForms, unless you set the FormBorderStyle to None and implement your own header like a UserControl putting whatever you want there.
Then you will need to implement some basic functionality like moving the form, closing it, etc.
Upvotes: 4