This question is locked. New answers and comments are not allowed.
I'm attempting to recreate the Lookless tree view demo with dynamic items, and I'm having difficulty setting the ItemContainerSytle for new items- any idea?
RadTreeViewItem item;
foreach (ServiceReference1.DataResult y in x) {
item = new RadTreeViewItem();
item.Header = y.Name
item.ItemContainerStyle = ???
CurrentTreeViewItem.Items.Add(item);
}
RadTreeViewItem item;
foreach (ServiceReference1.DataResult y in x) {
item = new RadTreeViewItem();
item.Header = y.Name
item.ItemContainerStyle = ???
CurrentTreeViewItem.Items.Add(item);
}