how to make treeview node with underline
i am working for window application in this my tree view control having the files and folder and i want all file nodes with text font style as underline how can i a chive this one
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
RainerPosted Aug 2, 2010, 9:16 AM
do something like this:
Treenode nd1 = new TreeNode();
Font MyFont = new Font("Microsoft Sans Serif",8.25F,FontStyle.Underline,GraphicsUnit.Point);
nd1.NodeFont = MyFont;