6 references to GetParent
System.Windows.Forms (4)
System\Windows\Forms\Control.cs (2)
2291parentHandle = PInvoke.GetParent(parentHandle); 11148parentHandle = PInvoke.GetParent(parentHandle);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
2562for (HWND hwnd = PInvokeCore.GetForegroundWindow(); !hwnd.IsNull; hwnd = PInvoke.GetParent(hwnd))
System\Windows\Forms\Dialogs\CommonDialogs\FileDialog.cs (1)
499_dialogHWnd = PInvoke.GetParent((HWND)hWnd);
System.Windows.Forms.Primitives (2)
Windows\Win32\PInvoke.GetParent.cs (2)
8/// <inheritdoc cref="GetParent(HWND)"/> 11HWND result = GetParent(hwnd.Handle);