| 12345678910111213141516171819202122232425262728293031 |
- //
- // System.Drawing.Design.ToolboxComponentsCreatingEventArgs.cs
- //
- // Author:
- // Alejandro Sánchez Acosta <[email protected]>
- //
- // (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;
- }
- }
- }
- }
|