22 lines
460 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel.Design;
namespace DevComponents.DotNetBar.Design
{
/// <summary>
/// Represents Windows Forms designer for MetroTabItem
/// </summary>
public class MetroTabItemDesigner : BaseItemDesigner
{
public override DesignerVerbCollection Verbs
{
get
{
return null;
}
}
}
}