5 references to IsWindowEnabled
System.Windows.Forms (4)
System\Windows\Forms\Application.ThreadContext.cs (1)
767if (CurrentForm is not null && CurrentForm.IsHandleCreated && PInvoke.IsWindowEnabled(CurrentForm) != modalEnabled)
System\Windows\Forms\Control.cs (2)
1093public bool CanFocus => IsHandleCreated && PInvoke.IsWindowVisible(this) && PInvoke.IsWindowEnabled(this); 4380else if (IsHandleCreated && GetTopLevel() && PInvoke.IsWindowEnabled(this))
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
1620else if (IsHandleCreated && PInvoke.IsWindowEnabled(this))
System.Windows.Forms.Primitives (1)
Windows\Win32\PInvoke.IsWindowEnabled.cs (1)
11BOOL result = IsWindowEnabled(hWnd.Handle);