huMpty duMpty
huMpty duMpty

Reputation: 14460

Changing the Header height/size Winform

Is it possible to change the height or style of the header in windows-form.

enter image description here

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

Answers (1)

Ignacio Soler Garcia
Ignacio Soler Garcia

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

Related Questions