| 12345678910111213141516171819202122232425 |
- //
- // System.Windows.Forms.IWindowTarget.cs
- //
- // Author:
- // William Lamb ([email protected])
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- namespace System.Windows.Forms {
- public interface IWindowTarget {
- // There is no documentation for this interface's members!
- // Only a note saying that it supports the .NET infrastructure
- // and is not intended to be used directly from your code.
- // The following methods had their own listing in the documentation;
- // I don't know what other methods and properties there may be.
- void OnHandleChange(IntPtr newHandle);
- void OnMessage(ref Message m);
- }
- }
|