2 writes to _uiScope
PresentationFramework (2)
System\windows\Documents\TextEditor.cs (2)
57
_uiScope
= uiScope;
205
_uiScope
= null;
55 references to _uiScope
PresentationFramework (55)
System\windows\Documents\TextEditor.cs (55)
62
((TextContainer)_textContainer).EnableUndo(
_uiScope
);
84
_uiScope
.IsEnabledChanged += new DependencyPropertyChangedEventHandler(OnIsEnabledChanged);
87
_uiScope
.SetValue(TextEditor.InstanceProperty, this);
92
if ((bool)
_uiScope
.GetValue(SpellCheck.IsEnabledProperty))
151
UndoManager undoManager = UndoManager.GetUndoManager(
_uiScope
);
156
((TextContainer)_textContainer).DisableUndo(
_uiScope
);
160
UndoManager.DetachUndoManager(
_uiScope
);
174
_uiScope
.IsEnabledChanged -= new DependencyPropertyChangedEventHandler(OnIsEnabledChanged);
204
_uiScope
.ClearValue(TextEditor.InstanceProperty);
269
TextBoxBase textBoxBase =
_uiScope
as TextBoxBase;
540
PopupControlService.Current.DismissToolTipsForOwner(
_uiScope
);
662
TextEditorTyping.OnPreviewKeyDown(
_uiScope
, e);
667
TextEditorTyping.OnKeyDown(
_uiScope
, e);
672
TextEditorTyping.OnKeyUp(
_uiScope
, e);
677
TextEditorTyping.OnTextInput(
_uiScope
, e);
682
TextEditorMouse.OnMouseDown(
_uiScope
, e);
687
TextEditorMouse.OnMouseMove(
_uiScope
, e);
692
TextEditorMouse.OnMouseUp(
_uiScope
, e);
697
TextEditorMouse.OnQueryCursor(
_uiScope
, e);
702
TextEditorDragDrop.OnQueryContinueDrag(
_uiScope
, e);
707
TextEditorDragDrop.OnGiveFeedback(
_uiScope
, e);
712
TextEditorDragDrop.OnDragEnter(
_uiScope
, e);
717
TextEditorDragDrop.OnDragOver(
_uiScope
, e);
722
TextEditorDragDrop.OnDragLeave(
_uiScope
, e);
727
TextEditorDragDrop.OnDrop(
_uiScope
, e);
732
TextEditorContextMenu.OnContextMenuOpening(
_uiScope
, e);
737
OnGotKeyboardFocus(
_uiScope
, e);
742
OnLostKeyboardFocus(
_uiScope
, e);
747
OnLostFocus(
_uiScope
, e);
835
get { return
_uiScope
; }
923
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(KeyboardNavigation.AcceptsReturnProperty);
935
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(TextBoxBase.AcceptsTabProperty);
939
Invariant.Assert(
_uiScope
!= null);
942
_uiScope
.SetValue(TextBoxBase.AcceptsTabProperty, value);
965
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(TextEditor.IsReadOnlyProperty);
988
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(SpellCheck.IsEnabledProperty);
992
Invariant.Assert(
_uiScope
!= null);
993
_uiScope
.SetValue(SpellCheck.IsEnabledProperty, value);
1020
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(TextEditor.AllowOvertypeProperty);
1033
return
_uiScope
== null ? 0 : (int)
_uiScope
.GetValue(TextBox.MaxLengthProperty);
1045
return
_uiScope
== null ? CharacterCasing.Normal : (CharacterCasing)
_uiScope
.GetValue(TextBox.CharacterCasingProperty);
1057
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(RichTextBox.AutoWordSelectionProperty);
1069
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(TextBoxBase.IsReadOnlyCaretVisibleProperty);
1300
return
_uiScope
== null ? false :
_uiScope
.IsEnabled;
1691
This._immComposition = ImmComposition.GetImmComposition(This.
_uiScope
);