Hello,
I have Form1 which has a TreeView object in it (treeView1). I made a class for manipulating this object which for the moment contains no code :|, because I had trouble "reaching" this treeView1 object in Form1 from my class.
The class is in a different cs file, in the same namespace as Form1.
The class will provide easier inserting, deleting and modifying of nodes.
What is the best method for making a "easier manipulation" class for this object in Form1?
Is it a CustomTreeView based on the TreeView class a good ideea?
thank you in advance
I have Form1 which has a TreeView object in it (treeView1). I made a class for manipulating this object which for the moment contains no code :|, because I had trouble "reaching" this treeView1 object in Form1 from my class.
The class is in a different cs file, in the same namespace as Form1.
The class will provide easier inserting, deleting and modifying of nodes.
What is the best method for making a "easier manipulation" class for this object in Form1?
Is it a CustomTreeView based on the TreeView class a good ideea?
thank you in advance
Comment