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