Is it possible to associate a user object with a TreeNode in C #?
Yes. You can use the Tag property to store any custom object for a particular node tree.
http://msdn.microsoft.com/en-us/library/system.windows.forms.treenode.tag.aspx
TreeNode node = CreateATreeNode(); node.Tag = myStateObject;
Source: https://habr.com/ru/post/1704628/More articles:Какие из этих функций браузера Javascript работают лучше? - performanceHow does MySQL use index mappings? - mysqlDjango: the uploaded file is locked. Unable to rename - pythonIs a method / variable reference in the external namespace more memory efficient than including it completely? - c #How to prevent "defaults" in redefined WinForm controls? - c #nHibernate (w/Castle ActiveRecord) с интерфейсами С# (esp для DTO) - c#Design Question - Put hundreds of Yes / No radio buttons in columns, rows, or others? - sqlIs this blackhat tech technology? - seoSet the reportviwer parameter in the application - .netRemoving an event operation: specifying an available range of listening ports - .netAll Articles