IWin32Window.cs 407 B

1234567891011121314151617181920
  1. //
  2. // System.Windows.Forms.IWin32Window.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. [ComVisible(true)]
  12. // FixMe [Guid("")]
  13. // FixMe [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  14. public interface IWin32Window {
  15. IntPtr Handle {get;}
  16. }
  17. }