How can I bind an object to a treeview (Winforms) node in C#?
I thought of something like ExNode : Windows.Forms.Node that can take an object as member besides the t
This MSDN article has some good information, for example:
class myTreeNode : TreeNode { public string FilePath; public myTreeNode(string fp) { FilePath = fp; this.Text = fp.Substring(fp.LastIndexOf("\\")); } }