moel@345: using System; moel@345: using System.Collections.Generic; moel@345: using System.Text; moel@345: using System.ComponentModel.Design; moel@345: moel@345: namespace Aga.Controls moel@345: { moel@345: public class StringCollectionEditor : CollectionEditor moel@345: { moel@345: public StringCollectionEditor(Type type): base(type) moel@345: { moel@345: } moel@345: moel@345: protected override Type CreateCollectionItemType() moel@345: { moel@345: return typeof(string); moel@345: } moel@345: moel@345: protected override object CreateInstance(Type itemType) moel@345: { moel@345: return ""; moel@345: } moel@345: } moel@345: }