12 references to IsWindow
System.Windows.Forms (10)
System\Windows\Forms\Application.ThreadWindows.cs (4)
49if (PInvoke.IsWindow(hwnd)) 68if (PInvoke.IsWindow(hwnd)) 84if (!_activeHwnd.IsNull && PInvoke.IsWindow(_activeHwnd)) 89if (!_focusedHwnd.IsNull && PInvoke.IsWindow(_focusedHwnd))
System\Windows\Forms\Control.cs (2)
5802return hwnd.IsNull || PInvoke.IsWindow(hwnd) 9353&& PInvoke.IsWindow(parentHandle))
System\Windows\Forms\Form.cs (2)
5779if (!PInvoke.IsWindow(activeHwnd)) 5784if (PInvoke.IsWindow(activeHwnd) && PInvoke.IsWindowVisible(activeHwnd))
System\Windows\Forms\NativeWindow.cs (1)
105if (PInvoke.IsWindow(handle))
System\Windows\Forms\Timer.cs (1)
290if (_stoppingTimer || hwnd.IsNull || !PInvoke.IsWindow(hwnd))
System.Windows.Forms.Primitives (2)
Windows\Win32\PInvoke.IsWindow.cs (2)
8/// <inheritdoc cref="IsWindow(HWND)"/> 11BOOL result = IsWindow(hWnd.Handle);