IContainer.cs 427 B

1234567891011121314151617181920212223242526
  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. namespace System.ComponentModel {
  10. [ComVisible (true)]
  11. public interface IContainer : IDisposable
  12. {
  13. ComponentCollection Components {
  14. get;
  15. }
  16. void Add (IComponent component);
  17. void Add (IComponent component, string name);
  18. void Remove (IComponent component);
  19. }
  20. }