This question is locked. New answers and comments are not allowed.
Hello,
I have TreeListView that contains 4 columns (Title, Name, Age, Street)
I have also class User
public class User
{
public String Title;
public String Name;
public int Age;
public String Street;
}
Now I would like to create TreeListView programatically but I dont know how to bind User properties to columns. Can you please help me how to do this?
Thank you very much.