How to change the font for the items in the WinForms XPTaskBar?
Change the font for the items
You can use ItemFont property of XPTaskBarItem to change the font of XPTaskBarItems
C#
this.xpTaskBarBox1.Items[1].ItemFont = new Font("MS Sans Serif", 9.75f, FontStyle.Bold);
VB
Me.xpTaskBarBox1.Items(1).ItemFont = New Font("MS Sans Serif", 9.75f, FontStyle.Bold)