Implemented interface member:
property
IsEnabled
System.Windows.IInputElement.IsEnabled
2 writes to IsEnabled
Microsoft.VisualStudio.LanguageServices (2)
PreviewPane\PreviewPane.xaml.cs (2)
258
IdHyperlink.
IsEnabled
= true;
407
LearnMoreHyperlink.
IsEnabled
= true;
13 references to IsEnabled
PresentationCore (8)
System\Windows\Automation\Peers\ContentElementAutomationPeer.cs (1)
200
return _owner.
IsEnabled
;
System\Windows\Input\MouseDevice.cs (2)
319
if(ce.
IsEnabled
) // There is no IsVisible property for ContentElement
780
if (element.
IsEnabled
== false)
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
675
return element.
IsEnabled
;
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
571
if (ce?.
IsEnabled
?? false)
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
271
if (ce.
IsEnabled
) // There is no IsVisible property for ContentElement
System\Windows\Input\TouchDevice.cs (2)
340
((contentElement != null) && contentElement.
IsEnabled
) ||
528
killCapture = !contentElement.
IsEnabled
;
PresentationFramework (5)
System\Windows\Controls\PopupControlService.cs (1)
1167
enabled = ce.
IsEnabled
;
System\Windows\Documents\Hyperlink.cs (2)
493
if (
IsEnabled
&& (!IsEditable || ((Keyboard.Modifiers & ModifierKeys.Control) != 0)))
807
if (link.
IsEnabled
&& link.IsEditable)
System\Windows\Input\KeyboardNavigation.cs (2)
1919
return fce != null && fce.Focusable && (bool)fce.GetValue(IsTabStopProperty) && fce.
IsEnabled
;
1938
return (ce != null && ce.Focusable && ce.
IsEnabled
);