6 references to IsReadOnlyProperty
PresentationFramework (6)
System\Windows\Controls\Primitives\TextBoxBase.cs (3)
427
TextEditor.
IsReadOnlyProperty
.AddOwner(
439
get { return (bool) GetValue(TextEditor.
IsReadOnlyProperty
); }
440
set { SetValue(TextEditor.
IsReadOnlyProperty
, value); }
System\Windows\Documents\ImmComposition.cs (1)
1861
return ((bool)UiScope.GetValue(TextEditor.
IsReadOnlyProperty
) || _editor.IsReadOnly);
System\windows\Documents\TextEditor.cs (1)
968
return _uiScope == null ? false : (bool)_uiScope.GetValue(TextEditor.
IsReadOnlyProperty
);
System\Windows\Documents\TextStore.cs (1)
4144
return ((bool)this.UiScope.GetValue(TextEditor.
IsReadOnlyProperty
) || TextEditor.IsReadOnly);