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