2 writes to _uiScope
PresentationFramework (2)
src\Framework\System\windows\Documents\TextEditor.cs (2)
72_uiScope = uiScope; 226_uiScope = null;
55 references to _uiScope
PresentationFramework (55)
src\Framework\System\windows\Documents\TextEditor.cs (55)
77((TextContainer)_textContainer).EnableUndo(_uiScope); 99_uiScope.IsEnabledChanged += new DependencyPropertyChangedEventHandler(OnIsEnabledChanged); 102_uiScope.SetValue(TextEditor.InstanceProperty, this); 107if ((bool)_uiScope.GetValue(SpellCheck.IsEnabledProperty)) 172UndoManager undoManager = UndoManager.GetUndoManager(_uiScope); 177((TextContainer)_textContainer).DisableUndo(_uiScope); 181UndoManager.DetachUndoManager(_uiScope); 195_uiScope.IsEnabledChanged -= new DependencyPropertyChangedEventHandler(OnIsEnabledChanged); 225_uiScope.ClearValue(TextEditor.InstanceProperty); 290TextBoxBase textBoxBase = _uiScope as TextBoxBase; 571popupControlService.CurrentToolTip.PlacementTarget == _uiScope) 701TextEditorTyping.OnPreviewKeyDown(_uiScope, e); 706TextEditorTyping.OnKeyDown(_uiScope, e); 711TextEditorTyping.OnKeyUp(_uiScope, e); 716TextEditorTyping.OnTextInput(_uiScope, e); 721TextEditorMouse.OnMouseDown(_uiScope, e); 726TextEditorMouse.OnMouseMove(_uiScope, e); 731TextEditorMouse.OnMouseUp(_uiScope, e); 736TextEditorMouse.OnQueryCursor(_uiScope, e); 741TextEditorDragDrop.OnQueryContinueDrag(_uiScope, e); 746TextEditorDragDrop.OnGiveFeedback(_uiScope, e); 751TextEditorDragDrop.OnDragEnter(_uiScope, e); 756TextEditorDragDrop.OnDragOver(_uiScope, e); 761TextEditorDragDrop.OnDragLeave(_uiScope, e); 766TextEditorDragDrop.OnDrop(_uiScope, e); 771TextEditorContextMenu.OnContextMenuOpening(_uiScope, e); 776OnGotKeyboardFocus(_uiScope, e); 781OnLostKeyboardFocus(_uiScope, e); 786OnLostFocus(_uiScope, e); 874get { return _uiScope; } 962return _uiScope == null ? true : (bool)_uiScope.GetValue(KeyboardNavigation.AcceptsReturnProperty); 974return _uiScope == null ? true : (bool)_uiScope.GetValue(TextBoxBase.AcceptsTabProperty); 978Invariant.Assert(_uiScope != null); 981_uiScope.SetValue(TextBoxBase.AcceptsTabProperty, value); 1004return _uiScope == null ? false : (bool)_uiScope.GetValue(TextEditor.IsReadOnlyProperty); 1027return _uiScope == null ? false : (bool)_uiScope.GetValue(SpellCheck.IsEnabledProperty); 1031Invariant.Assert(_uiScope != null); 1032_uiScope.SetValue(SpellCheck.IsEnabledProperty, value); 1059return _uiScope == null ? true : (bool)_uiScope.GetValue(TextEditor.AllowOvertypeProperty); 1072return _uiScope == null ? 0 : (int)_uiScope.GetValue(TextBox.MaxLengthProperty); 1084return _uiScope == null ? CharacterCasing.Normal : (CharacterCasing)_uiScope.GetValue(TextBox.CharacterCasingProperty); 1096return _uiScope == null ? false : (bool)_uiScope.GetValue(RichTextBox.AutoWordSelectionProperty); 1108return _uiScope == null ? false : (bool)_uiScope.GetValue(TextBoxBase.IsReadOnlyCaretVisibleProperty); 1345return _uiScope == null ? false : _uiScope.IsEnabled; 1757This._immComposition = ImmComposition.GetImmComposition(This._uiScope);