Click here to Skip to main content
15,899,679 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to assign icons to a tree View node in a tree view....?

What I have tried:

I really don't know how to assign icons to a tree node in a tree view...
Posted
Updated 20-Jul-20 22:18pm

1 solution

Depends on the environment: there are different controls for Web and WinForms for example.

For the Winforms TreeView, it's pretty simple: Set Icons for TreeView Control - Windows Forms | Microsoft Docs[^]

For Wed TreeViews, it's also simple - just set the ImageUrl property:
ASP.NET
<asp:TreeNode ImageUrl="image.jpg"></asp:TreeNode>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900