6 implementations of Handle
System.Private.Windows.Core (6)
Windows\Win32\Foundation\HWND.cs (1)
8HWND IHandle<HWND>.Handle => this;
Windows\Win32\Foundation\NullHandle.cs (1)
12public T Handle => default;
Windows\Win32\Graphics\Gdi\HDC.cs (1)
8HDC IHandle<HDC>.Handle => this;
Windows\Win32\Graphics\Gdi\HdcHandle.cs (1)
24public HDC Handle { get; private set; }
Windows\Win32\UI\WindowsAndMessaging\HCURSOR.cs (1)
8HCURSOR IHandle<HCURSOR>.Handle => this;
Windows\Win32\UI\WindowsAndMessaging\HICON.cs (1)
8HICON IHandle<HICON>.Handle => this;
11 references to Handle
System.Private.Windows.Core (11)
Windows\Win32\Foundation\HandleRef.cs (1)
26Handle = handle?.Handle ?? default;
Windows\Win32\Foundation\IHandle.cs (1)
38/// Owner of the <see cref="Handle"/> that might close it when finalized. Default is the
Windows\Win32\PInvoke.BitBlt.cs (2)
21hdc.Handle, 52hdcSrc.Handle,
Windows\Win32\PInvoke.CopyImage.cs (2)
12HICON result = (HICON)CopyImage(hImage.Handle, GDI_IMAGE_TYPE.IMAGE_ICON, cx, cy, flags); 21HCURSOR result = (HCURSOR)CopyImage(hImage.Handle, GDI_IMAGE_TYPE.IMAGE_CURSOR, cx, cy, flags);
Windows\Win32\PInvoke.DrawIconEx.cs (1)
25BOOL result = DrawIconEx(hDC, xLeft, yTop, hIcon.Handle, cxWidth, cyWidth, 0, HBRUSH.Null, diFlags);
Windows\Win32\PInvoke.GetClientRect.cs (1)
12BOOL result = GetClientRect(hWnd.Handle, out lpRect);
Windows\Win32\PInvoke.GetIconInfo.cs (1)
12GetIconInfo(icon.Handle, out ICONINFO info);
Windows\Win32\System\Ole\PICTDESC.cs (2)
33(HANDLE)icon.Handle, 38: icon.Handle;