| 123456789101112131415161718 |
- //
- // System.Windows.Forms.IContainerControl.cs
- //
- // Author:
- // William Lamb ([email protected])
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- namespace System.Windows.Forms
- {
- public interface IContainerControl
- {
- bool ActivateControl(Control active);
- Control ActiveControl {get; set;}
- }
- }
|