Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
UltraTree Questions.
posted

Hello!
I use ultratree and I am having some issues:
1. After I do this:
public class TreeElement
{
private string _name;
public string Name
{
get {return _name;}
set {_name = value;}
}
private int _id;
public int ID
{
get {return __id;}
set {__id = value;}
}
}
BindingList <TreeElement> _teList = new BindingList <TreeElement> ();
ultraTree.DataSource = _teList;

The tree reflected both fields. I like to hide the ID. How I can do that?

And how I can rename each of column?

2.How can know the level of the selected node?