I'm evaluating the Winforms tool and have made a small project to try the RadPropertyGrid component. Here's the relevant code:
radPropertyGrid2.PropertySort = PropertySort.CategorizedAlphabetical;
RadPropertyStore store = new Telerik.WinControls.UI.RadPropertyStore();
store.Add(new PropertyStoreItem(typeof(double), "Foobar", 1.234, "ahdfl fdlskhs hjdfd", "Ack"));
this.radPropertyGrid2.SelectedObject = store;
Any advice would be greatly appreciated.
NOTE: when I use an object with multiple properties as the selected object, each property appears to get a separate group associated with it, even though the name on each group is blank.