The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Is there a way to store some information (nodeId,nodeindex,etc)in tree nodes besides the text porperty.
It would be nice if you can store an object in some property of the node like Tag
You can store any object you would like in the node Tag property. All you have to do is cast to the proper object when you access it.
Example C# :
CustomObject custObj = (CustomObject)treeView.Node.Tag;
string something = custObj.SomeStringProperty;
That is as easy as it gets....
>Is there a way to store some information (nodeId,nodeindex,etc)in tree nodes besides the text porperty.
>It would be nice if you can store an object in some property of the node like Tag