IContainerControl.cs 360 B

123456789101112131415161718
  1. //
  2. // System.Windows.Forms.IContainerControl.cs
  3. //
  4. // Author:
  5. // William Lamb ([email protected])
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) 2002 Ximian, Inc. http://www.ximian.com
  9. //
  10. namespace System.Windows.Forms
  11. {
  12. public interface IContainerControl
  13. {
  14. bool ActivateControl(Control active);
  15. Control ActiveControl {get; set;}
  16. }
  17. }