I have implemented StringCollection editor in my custom control and below is the code :
[Description("extra free-form attributes on this thing.")]
[Editor(@"System.Windows.Forms.Design.StringCollectionEditor," +
"System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
typeof(System.Drawing.Design.UITypeEditor))]
public System.Collections.Specialized.StringCollection Items
{
get
{
if (items == null)
items = new System.Collections.Specialized.StringCollection();
return this.items;
}
}
public System.Collections.Specialized.StringCollection items;
This works fine but every time i enter some value in the collection and re-open it.. values are lost i.e. it does not store the values.
Is there anything missing to store the value of user entered strings or do i need to implement custom StringCollection so that user entered string values persist in the String Editor.
I even refered to below given link.. but still issue exists : How can I use a WinForms PropertyGrid to edit a list of strings?
Yes, you need to apply DesignerSerializationVisibility attribute to
DesignerSerializationVisibility.Content
. Without that all changes to the complex objects(other than primitives, strings, etc) will be lost.