6 references to IsReadOnlyProperty
PresentationFramework (6)
System\Windows\Controls\Primitives\TextBoxBase.cs (3)
434TextEditor.IsReadOnlyProperty.AddOwner( 446get { return (bool) GetValue(TextEditor.IsReadOnlyProperty); } 447set { SetValue(TextEditor.IsReadOnlyProperty, value); }
System\Windows\Documents\ImmComposition.cs (1)
1882return ((bool)UiScope.GetValue(TextEditor.IsReadOnlyProperty) || _editor.IsReadOnly);
System\windows\Documents\TextEditor.cs (1)
977return _uiScope == null ? false : (bool)_uiScope.GetValue(TextEditor.IsReadOnlyProperty);
System\Windows\Documents\TextStore.cs (1)
4162return ((bool)this.UiScope.GetValue(TextEditor.IsReadOnlyProperty) || TextEditor.IsReadOnly);