Property edit style as DropDown in a VS .NET custom component
问题 I'd like to use the functionality of a ComboBox as edit option for a var in the properties window of a custom control / component. Not the ComboBox component itself. As example: private string[] _stringArray = { "string0", "string1" }; public string[] StringArray { get { return _stringArray; } //callback //set { _stringArray = value; } } As you know this will give me the object browser as view/edit option in the property window. Funny thing that I can edit the values even with no setter. In