IContainer.cs 465 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.ComponentModel.IContainer.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. using System.Runtime.InteropServices;
  10. namespace System.ComponentModel {
  11. [ComVisible (true)]
  12. public interface IContainer : IDisposable
  13. {
  14. ComponentCollection Components {
  15. get;
  16. }
  17. void Add (IComponent component);
  18. void Add (IComponent component, string name);
  19. void Remove (IComponent component);
  20. }
  21. }