ListViewItem.Font

  • Thread starter Thread starter mmobile
  • Start date Start date
M

mmobile

Since ListViewItem.Font is not available in .NET CF is it possible for me to
custom paint more items or the while ListView itself?

I want to display the text in my list view items with bold, italics, and/or
strike-through fonts.

Does anyone know if there is a control library I can purchase that contains
a ListView control which would give me the capability I am looking for?

I must use a ListView because I need the columns provided, therefore I can't
use the ListControl.

Thanks.
 
Hi,
you can do it in code - lvSpoons.Font = New System.Drawing.Font("Tahoma",
14.5, System.Drawing.FontStyle.Regular), but it is all or nothing, the whole
listview, not cols

HTH

Pete
 
Back
Top