3 references to HWND_NOTOPMOST
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DataGridToolTip.cs (1)
50
SafeNativeMethods.SetWindowPos(new HandleRef(tipWindow, tipWindow.Handle), NativeMethods.
HWND_NOTOPMOST
, 0, 0, 0, 0, NativeMethods.SWP_NOSIZE | NativeMethods.SWP_NOMOVE | NativeMethods.SWP_NOACTIVATE);
winforms\Managed\System\WinForms\Form.cs (1)
2576
HandleRef key = value ? NativeMethods.HWND_TOPMOST : NativeMethods.
HWND_NOTOPMOST
;
winforms\Managed\System\WinForms\ToolStripDropDown.cs (1)
1102
HandleRef topMostFlag = (topMost) ? NativeMethods.HWND_TOPMOST : NativeMethods.
HWND_NOTOPMOST
;