Live Chat Icon For mobile
Live Chat Icon

What should I do to make my StringCollection property editable during design-time?

Platform: WinForms| Category: Type Editors

Use this custom editor attribute for the property that is of the StringCollection type (this can be used for other Collection types too if you want to allow entry of strings into the collection during design-time).


Editor('System.Windows.Forms.Design.StringCollectionEditor, System.Design', 'System.Drawing.Design.UITypeEditor, System.Drawing'),
public YourCollection YourProp{get{...}set{...}}

StringCollectionEditor is not public so you have to use the above constructor override and specify the typename. This editor should allow you
to edit your collection without any problems.

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.