File: System\Windows\Forms\IWin32window.cs | Web Access |
Project: src\src\System.Windows.Forms\src\System.Windows.Forms.csproj (System.Windows.Forms) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Forms; // Desktop Framework uses GUID 458AB8A2-A1EA-4d7b-8EBE-DEE5D3D9442C // If interop with Desktop Framework is required this can be ComImported. public interface IWin32Window { /// <summary> /// Gets the handle to the window represented by the implementor. /// </summary> IntPtr Handle { get; } } |