Reputation: 43
I am creating an windows application by using C#.net.In that on one form,i've a ListView with two Columns,one Containing UserID & Other Containing UserName.I would like to set two Different Fonts(like Century SchoolBook & Monotype Corsiva) for these two Columns. How can i achieve this?Please Help me. Thank You.
Upvotes: 0
Views: 450
Reputation: 761
Make these two columns as label columns and then you can easily set a different font for two different labels.
Following example explains how a button is added to a column. Same logic can be used to add labels.
Adding button into a Listview in WinForms
Upvotes: 1