ToolboxComponentsCreatingEventArgs.cs 484 B

12345678910111213141516171819202122232425262728
  1. // System.Drawing.Design.ToolboxComponentsCreatingEventArgs.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta <[email protected]>
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. namespace System.Drawing.Design
  9. {
  10. public class ToolboxComponentsCreatingEventArgs : EventArgs
  11. {
  12. private IDesignerHost host;
  13. public ToolboxComponentsCreatingEventArgs (IDesignerHost host)
  14. {
  15. this.host = host;
  16. }
  17. public IDesignerHost DesignerHost {
  18. get {
  19. return host;
  20. }
  21. }
  22. }
  23. }