7 references to IsEnabledProperty
PresentationFramework (7)
src\Framework\System\Windows\Controls\SpellCheck.cs (4)
60return (bool)_owner.GetValue(IsEnabledProperty); 65_owner.SetValue(IsEnabledProperty, value); 79textBoxBase.SetValue(IsEnabledProperty, value); 92return (bool)textBoxBase.GetValue(IsEnabledProperty);
src\Framework\System\windows\Documents\TextEditor.cs (3)
107if ((bool)_uiScope.GetValue(SpellCheck.IsEnabledProperty)) 1027return _uiScope == null ? false : (bool)_uiScope.GetValue(SpellCheck.IsEnabledProperty); 1032_uiScope.SetValue(SpellCheck.IsEnabledProperty, value);