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