Hi ,
In our project we used to use Winform PropertyGrid and for some Properties we used TypeConverter to show list of values in comboboxes.
Now as telerik not supporting complete TypeConverter and sending null value in ITypeDescriptionContext,I can't use it in RadPropertyGrid.
So I thought of Binding List<string> properties to the property as combo and store selectedvalue in another Property once user Select a value in PropertyGrid.
But When I try to bind List<string> Property it is showing it as CollectionEditor but I want to show it as Combobox and once user select I want to store in on another Property so that I can use it further.
And I will get the List dynamically ,so I can't change the type to Enum.
I have tried to create Combobox Template and Combobox userControl I am not able to understand how to pass ItemSource to this usercontrol or template.
I can't create ten templates for each Property.I have to reuse the same template.
So please suggest something that is feasible as early as Possible.
I have attached two image files. I Want Company,employees,Designations,similar to Countries.
I have created Sample Application but not able to attach here.