5 overrides of IsEnabledCore
PresentationFramework (3)
System\Windows\Controls\MenuItem.cs (1)
461protected override bool IsEnabledCore
System\Windows\Controls\Primitives\ButtonBase.cs (1)
329protected override bool IsEnabledCore
System\Windows\Controls\Primitives\ScrollBar.cs (1)
190protected override bool IsEnabledCore
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
2942protected override bool IsEnabledCore
Microsoft\Windows\Controls\Ribbon\RibbonTextBox.cs (1)
231protected override bool IsEnabledCore
6 references to IsEnabledCore
PresentationCore (1)
System\Windows\UIElement.cs (1)
3638return BooleanBoxes.Box(uie.IsEnabledCore);
PresentationFramework (3)
System\Windows\Controls\MenuItem.cs (1)
465return base.IsEnabledCore && CanExecute;
System\Windows\Controls\Primitives\ButtonBase.cs (1)
333return base.IsEnabledCore && CanExecute;
System\Windows\Controls\Primitives\ScrollBar.cs (1)
194return base.IsEnabledCore && _canScroll;
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
2946return base.IsEnabledCore && CanExecute;
Microsoft\Windows\Controls\Ribbon\RibbonTextBox.cs (1)
235return base.IsEnabledCore && CanExecute;