IContainer.cs 404 B

123456789101112131415161718192021222324
  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. public interface IContainer : IDisposable {
  11. ComponentCollection Components {
  12. get;
  13. }
  14. void Add (IComponent component);
  15. void Add (IComponent component, string name);
  16. void Remove (IComponent component);
  17. }
  18. }