/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/previewpane/common/cominterop/NativeMethods.cs
44 строки
2 KB
Davide Giacometti
[PreviewPane] Fix form positioning issues (#34035)
07 авг 2024, 14:41
Не верифицирован
07 авг 2024, 14:41
3798a10
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Runtime.InteropServices; namespace PreviewHandlerCommon.ComInterop { /// <summary> /// Interop methods /// </summary> internal sealed class NativeMethods { /// <summary> /// Changes the parent window of the specified child window. /// </summary> /// <param name="hWndChild">A handle to the child window.</param> /// <param name="hWndNewParent">A handle to the new parent window.</param> /// <returns>If the function succeeds, the return value is a handle to the previous parent window and NULL in case of failure.</returns> [DllImport("user32.dll")] public static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent); /// <summary> /// Retrieves the handle to the window that has the keyboard focus, if the window is attached to the calling thread's message queue. /// </summary> /// <returns>The return value is the handle to the window with the keyboard focus. If the calling thread's message queue does not have an associated window with the keyboard focus, the return value is NULL.</returns> [DllImport("user32.dll", CharSet = CharSet.Auto)] public static extern IntPtr GetFocus(); [DllImport("user32.dll", SetLastError = true)] public static extern int GetWindowLong(IntPtr hWnd, int nIndex); [DllImport("user32.dll", SetLastError = true)] public static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong); [DllImport("user32.dll", SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)] public static extern bool GetClientRect(IntPtr hWnd, ref Common.ComInterlop.RECT rect); [DllImport("user32.dll")] public static extern bool IsWindow(IntPtr hWnd); } }