// // System.Drawing.Design.ToolboxComponentsCreatingEventArgs.cs // // Author: // Alejandro Sánchez Acosta // // (C) Alejandro Sánchez Acosta // using System.ComponentModel.Design; namespace System.Drawing.Design { public class ToolboxComponentsCreatingEventArgs : EventArgs { private IDesignerHost host; public ToolboxComponentsCreatingEventArgs (IDesignerHost host) { this.host = host; } public IDesignerHost DesignerHost { get { return host; } } } }