5 overrides of IsEnabledCore
PresentationFramework (3)
System\Windows\Controls\MenuItem.cs (1)
462protected override bool IsEnabledCore
System\Windows\Controls\Primitives\ButtonBase.cs (1)
330protected override bool IsEnabledCore
System\Windows\Controls\Primitives\ScrollBar.cs (1)
191protected override bool IsEnabledCore
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
2943protected override bool IsEnabledCore
Microsoft\Windows\Controls\Ribbon\RibbonTextBox.cs (1)
232protected override bool IsEnabledCore
6 references to IsEnabledCore
PresentationCore (1)
System\Windows\UIElement.cs (1)
3639return BooleanBoxes.Box(uie.IsEnabledCore);
PresentationFramework (3)
System\Windows\Controls\MenuItem.cs (1)
466return base.IsEnabledCore && CanExecute;
System\Windows\Controls\Primitives\ButtonBase.cs (1)
334return base.IsEnabledCore && CanExecute;
System\Windows\Controls\Primitives\ScrollBar.cs (1)
195return base.IsEnabledCore && _canScroll;
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
2947return base.IsEnabledCore && CanExecute;
Microsoft\Windows\Controls\Ribbon\RibbonTextBox.cs (1)
236return base.IsEnabledCore && CanExecute;