6 references to IsReadOnlyProperty
PresentationFramework (6)
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (3)
457
TextEditor.
IsReadOnlyProperty
.AddOwner(
469
get { return (bool) GetValue(TextEditor.
IsReadOnlyProperty
); }
470
set { SetValue(TextEditor.
IsReadOnlyProperty
, value); }
src\Framework\System\Windows\Documents\ImmComposition.cs (1)
2072
return ((bool)UiScope.GetValue(TextEditor.
IsReadOnlyProperty
) || _editor.IsReadOnly);
src\Framework\System\windows\Documents\TextEditor.cs (1)
1004
return _uiScope == null ? false : (bool)_uiScope.GetValue(TextEditor.
IsReadOnlyProperty
);
src\Framework\System\Windows\Documents\TextStore.cs (1)
3970
return ((bool)this.UiScope.GetValue(TextEditor.
IsReadOnlyProperty
) || TextEditor.IsReadOnly);