22 lines
463 B
C#
22 lines
463 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.Design;
|
|
using System.Text;
|
|
|
|
namespace DevComponents.DotNetBar.Design
|
|
{
|
|
/// <summary>
|
|
/// Represents Windows Forms designer for RibbonTabItem
|
|
/// </summary>
|
|
public class TabFormItemDesigner : BaseItemDesigner
|
|
{
|
|
public override DesignerVerbCollection Verbs
|
|
{
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|