Change specific treeview node font?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

I would like to change only my "header nodes" font in my treeview. Is this
possible? I used the following to try it:
trvAppts.Font = New Font(trvAppts.Font.Name, trvAppts.Font.Size,
FontStyle.Bold)

But that set the whole treeview to Bold. I only want the header ones.

Can the compact framework do this?
 
There is no per-item font in TreeView control. That is unless you make it
owner-draw, which is not possible under CF
 
Back
Top