Wednesday, February 07, 2007

String collection UITypeEditor

[Category("Custom Attributes")]
[Description("List of possible values")]
[Editor(@"System.Windows.Forms.Design.StringCollectionEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))]
public List<string> Items
{
get { return this.m_Items; }
set { this.m_Items = value; }
}

0 comments: