How to change font size in the and listview controls

  • Thread starter Thread starter okaminer
  • Start date Start date
O

okaminer

I'm building my first application
I put listview and treeview controls on the phone but the font is too
big
is there any way to make the font smaller?
 
Hi,

Try this, me it works fine :

myListView.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F,
System.Drawing.FontStyle.Regular);

Best regards.

Fabien Decret
 
Back
Top