System.Windows.Forms.ColumnHeader has fixed height?

  • Thread starter Thread starter Brad Evan
  • Start date Start date
B

Brad Evan

Anyone know if the font size on a system.windows.forms.columnheader can be
changed?
=\
-b
 
While you cannot change this in the designer - you can change the Font
property of the ListView in code and this will apply to the column headers
(and all rows). If you need greater flexibility i.e. different font for rows
and header then set the HeaderStyle to None and implement your own header
row - e.g. using separate Button controls.

Peter

--
Peter Foot
Windows Embedded MVP

In The Hand
http://www.inthehand.com
 
Back
Top