Hi all:
I have a StringCollection property like this:
public class FormExito : Form
{
................
................
private StringCollection FEditar;
[Editor("System.Windows.Forms.Design.StringCollecti onEditor,
System.Design", System.Drawing.Design.UITypeEditor, System.Drawing")]
public StringCollection Editar
{
get{ return FEditar; }
set{ FEditar = value; }
}
................
................
}
It works well in design time, but after close and open the form again the
property loses the value ...
Thanks
Juan Francisco ...