IWindowTarget.cs 686 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Windows.Forms.IWindowTarget.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. public interface IWindowTarget {
  12. // There is no documentation for this interface's members!
  13. // Only a note saying that it supports the .NET infrastructure
  14. // and is not intended to be used directly from your code.
  15. // The following methods had their own listing in the documentation;
  16. // I don't know what other methods and properties there may be.
  17. void OnHandleChange(IntPtr newHandle);
  18. void OnMessage(ref Message m);
  19. }
  20. }