| 1234567891011121314151617181920212223242526 |
- //
- // System.ComponentModel.IContainer.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.ComponentModel {
- [ComVisible (true)]
- public interface IContainer : IDisposable
- {
- ComponentCollection Components {
- get;
- }
- void Add (IComponent component);
- void Add (IComponent component, string name);
- void Remove (IComponent component);
- }
- }
|