Hi
I have placed a RadTreeView on a form and then in the load event have the following:
I have placed a RadTreeView on a form and then in the load event have the following:
for (int i = 0; i < 10; i++) |
{ |
RadTreeNode treeNode = new RadTreeNode(i.ToString()); |
treeNode.ShowRadioButton = true; |
radTreeView1.Nodes.Add(treeNode); |
} |
The problem is that when I click on one item in the list and then another, the first one is not deselected and I end up with all the radio buttons selected. The sample you provide does not have this problem.
Please could you explain how to achieve the effect I want - a list of (top level) radio buttons.
Thanks
Best regards
Marek