System.ComponentModel.DesignerCategoryAttribute
namespace System.ComponentModel
{
public sealed class DesignerCategoryAttribute : Attribute
{
public static readonly DesignerCategoryAttribute Component;
public static readonly DesignerCategoryAttribute Default;
public static readonly DesignerCategoryAttribute Form;
public static readonly DesignerCategoryAttribute Generic;
public string Category { get; }
public DesignerCategoryAttribute();
public DesignerCategoryAttribute(string category);
}
}