I have a WPF application with treeview control. When I implement this method to parse the strings I can find a treeview. Now I want to assign id to each path for example"NetworkControl.AlternateIndexText.Value", will have its own id and "NetworkControl.AddressData.MessageOriginatorID.Value", will have another id associated to it.
public List<TreeModel> BuildTree(IEnumerable<string> strings)
{
return (
from s in strings
let split = s.Split('.')
group s by s.Split('.')[0] into g
select new TreeModel
{
Name = g.Key,
Children = BuildTree(
from s in g
where s.Length > g.Key.Length + 1
select s.Substring(g.Key.Length + 1))
}
).ToList();
}
public List<TreeModel> GetRequestTreeNodes()
{
string[] nodes = {
"NetworkControl.AlternateIndexText.Value", // This is path associated with its own id in a table
"NetworkControl.AddressData.DestinationID",
};
List<TreeModel> nodeList = BuildTree(nodes);
return nodeList;
}
How can I build my tree so that it has attributes: id, name, List of children. Do I need to have some kind of complex object with (id,name)? thank you all for your help