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