I cannot see MyLoad.TreeLoader(), but why?
I have implemented iloader to TreeViewLoad. I should be able to see TreeLoader().
namespace Rekursive
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
//treeView1.Nodes.Add("Test");
iloader MyLoad = new TreeViewLoad();
MyLoad.loader("test", treeView1, 1);
}
}
interface iloader
{
void loader(string nodeName, TreeView myTre, int id);
}
class TreeViewLoad : iloader
{
public void TreeLoader(TreeView tre)
{
// Here I want to call the loader
}
public void loader(string nodeName, TreeView myTre, int id)
{
myTre.Nodes.Add(nodeName + id.ToString());
if (id < 10)
{
id++;
loader(nodeName, myTre, id);
}
}
}
}
You are referring to the object through the interface, which means you only have access to the interface’s methods and properties. The interface has a void loader method, TreeLoader belongs to the TreeViewLoad class.