#region Imports
|
|
using System;
|
using System.ComponentModel.Design;
|
using System.Windows.Forms;
|
|
#endregion
|
|
namespace DPumpHydr.WinFrmUI.RLT.Child.Metro
|
{
|
#region MetroTabPageCollectionEditorChild
|
|
internal class MetroTabPageCollectionEditor : CollectionEditor
|
{
|
public MetroTabPageCollectionEditor(Type type) : base(type)
|
{ }
|
|
protected override Type[] CreateNewItemTypes()
|
{
|
return new[] { typeof(TabPage), typeof(MetroTabPage) };
|
}
|
}
|
|
#endregion
|
}
|