2
0

ToolboxComponentsCreatingEventArgs.cs 524 B

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