Hello all.
I have the following custom property in my code:
public Dictionary<int, string> ServiceIdList
{
get
{
return ((Dictionary<int, string>)(GetValue(LoadSubscriptionList.ServiceIdListProperty)));
}
set
{
SetValue(LoadSubscriptionList.ServiceIdListProperty, value);
}
}
But the property editor for this (String Collection Editor) comes up disabled. Do I have to implement a custom UITypeEditor or can the getters and setters be improved as to provide 'hints' to the editor as to what types can be in an entry?
Thanks for any help!