IDesigner.cs 441 B

123456789101112131415161718192021222324
  1. // System.ComponentModel.Design.IDesigner.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta <[email protected]>
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. using System.Runtime.InteropServices;
  9. namespace System.ComponentModel.Design
  10. {
  11. [ComVisible(true)]
  12. public interface IDesigner : IDisposable
  13. {
  14. IComponent Component {get;}
  15. DesignerVerbCollection Verbs {get;}
  16. void DoDefaultAction ();
  17. void Initialize (IComponent component);
  18. }
  19. }