Hi,
I have a custom user control (a webcontrol in this case) that has a property of type Collection
public class example : public System.Web.UI.UserControl
{
public Collection<string> ThisIsTheCollection { get; set; }
}
I would like to be able to edit this property in designer when I add this control to a webform. It does show up already, but I'd like it to have a [...] button in the property window and when you clik it, it gives you the ability to enter multiple strings. Probably this should also be reflected in the markup someway.
Can anyone point me in the right direction?
PS The property doesn't have to be of the type Collection, if some other generic collection type would be more suitable...