Implemented interface member:
property
IsEnabled
System.Windows.IInputElement.IsEnabled
2 writes to IsEnabled
Microsoft.VisualStudio.LanguageServices (2)
PreviewPane\PreviewPane.xaml.cs (2)
259
IdHyperlink.
IsEnabled
= true;
408
LearnMoreHyperlink.
IsEnabled
= true;
13 references to IsEnabled
PresentationCore (8)
System\Windows\Automation\Peers\ContentElementAutomationPeer.cs (1)
199
return _owner.
IsEnabled
;
System\Windows\Input\MouseDevice.cs (2)
318
if(ce.
IsEnabled
) // There is no IsVisible property for ContentElement
779
if (!element.
IsEnabled
)
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
668
return element.
IsEnabled
;
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
570
if (ce?.
IsEnabled
?? false)
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
267
if (ce.
IsEnabled
) // There is no IsVisible property for ContentElement
System\Windows\Input\TouchDevice.cs (2)
339
((contentElement != null) && contentElement.
IsEnabled
) ||
527
killCapture = !contentElement.
IsEnabled
;
PresentationFramework (5)
System\Windows\Controls\PopupControlService.cs (1)
1163
enabled = ce.
IsEnabled
;
System\Windows\Documents\Hyperlink.cs (2)
492
if (
IsEnabled
&& (!IsEditable || ((Keyboard.Modifiers & ModifierKeys.Control) != 0)))
805
if (link.
IsEnabled
&& link.IsEditable)
System\Windows\Input\KeyboardNavigation.cs (2)
1911
return fce != null && fce.Focusable && (bool)fce.GetValue(IsTabStopProperty) && fce.
IsEnabled
;
1930
return (ce != null && ce.Focusable && ce.
IsEnabled
);