Changing the Header height/size Winform

.net, c#, custom-controls, winforms

Solution

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.

Problem

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`?

Original source