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)
204
return _owner.
IsEnabled
;
System\Windows\Input\MouseDevice.cs (2)
332
if(ce.
IsEnabled
) // There is no IsVisible property for ContentElement
794
if (element.
IsEnabled
== false)
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
685
return element.
IsEnabled
;
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
579
if (ce?.
IsEnabled
?? false)
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
274
if (ce.
IsEnabled
) // There is no IsVisible property for ContentElement
System\Windows\Input\TouchDevice.cs (2)
352
((contentElement != null) && contentElement.
IsEnabled
) ||
540
killCapture = !contentElement.
IsEnabled
;
PresentationFramework (5)
System\Windows\Controls\PopupControlService.cs (1)
1167
enabled = ce.
IsEnabled
;
System\Windows\Documents\Hyperlink.cs (2)
499
if (
IsEnabled
&& (!IsEditable || ((Keyboard.Modifiers & ModifierKeys.Control) != 0)))
811
if (link.
IsEnabled
&& link.IsEditable)
System\Windows\Input\KeyboardNavigation.cs (2)
1923
return fce != null && fce.Focusable && (bool)fce.GetValue(IsTabStopProperty) && fce.
IsEnabled
;
1942
return (ce != null && ce.Focusable && ce.
IsEnabled
);