3 overrides of IsEnabledCore
PresentationFramework (3)
src\Framework\System\Windows\Controls\MenuItem.cs (1)
475protected override bool IsEnabledCore
src\Framework\System\Windows\Controls\Primitives\ButtonBase.cs (1)
336protected override bool IsEnabledCore
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (1)
212protected override bool IsEnabledCore
4 references to IsEnabledCore
PresentationCore (1)
Core\CSharp\System\Windows\UIElement.cs (1)
3693return BooleanBoxes.Box(uie.IsEnabledCore);
PresentationFramework (3)
src\Framework\System\Windows\Controls\MenuItem.cs (1)
479return base.IsEnabledCore && CanExecute;
src\Framework\System\Windows\Controls\Primitives\ButtonBase.cs (1)
340return base.IsEnabledCore && CanExecute;
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (1)
216return base.IsEnabledCore && _canScroll;