7 references to IsEnabledProperty
PresentationFramework (7)
System\Windows\Controls\SpellCheck.cs (4)
58
return (bool)_owner.GetValue(
IsEnabledProperty
);
63
_owner.SetValue(
IsEnabledProperty
, value);
74
textBoxBase.SetValue(
IsEnabledProperty
, value);
84
return (bool)textBoxBase.GetValue(
IsEnabledProperty
);
System\windows\Documents\TextEditor.cs (3)
103
if ((bool)_uiScope.GetValue(SpellCheck.
IsEnabledProperty
))
1000
return _uiScope == null ? false : (bool)_uiScope.GetValue(SpellCheck.
IsEnabledProperty
);
1005
_uiScope.SetValue(SpellCheck.
IsEnabledProperty
, value);