using System; using System.Collections.Generic; using System.ComponentModel.Design; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace DPumpHydr.WinFrmUI.WenSkin.Design.Editor { public class DuiWenCollectionEditor : WenCollectionEditor { public DuiWenCollectionEditor(Type type) : base(type) { } protected override Type[] CreateNewItemTypes() { return new Type[] { typeof(Microsoft.Windows.Forms.UIControl), typeof(Microsoft.Windows.Forms.UIButton), typeof(Microsoft.Windows.Forms.UIImage), typeof(Microsoft.Windows.Forms.UILabel), typeof(Microsoft.Windows.Forms.UILine), typeof(Microsoft.Windows.Forms.UILink), typeof(Microsoft.Windows.Forms.UILink), typeof(Microsoft.Windows.Forms.UIPanel), typeof(Microsoft.Windows.Forms.UIProgress), }; } protected override object CreateInstance(Type itemType) { return base.CreateInstance(itemType); } } }