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