// // System.Drawing.ToolboxBitmapAttribute.cs // // Author: // Dennis Hayes (dennish@Raytek.com) // // (C) 2002 Ximian, Inc // using System; namespace System.Drawing { /// /// Summary description for ToolboxBitmapAttribute. /// public class ToolboxBitmapAttribute : Attribute { public ToolboxBitmapAttribute(string imageFile) { // // TODO: Add constructor logic here // } public ToolboxBitmapAttribute(Type t) { // // TODO: Add constructor logic here // } public ToolboxBitmapAttribute(Type t, string name) { // // TODO: Add constructor logic here // } } }