2 writes to _uiScope
PresentationFramework (2)
System\windows\Documents\TextEditor.cs (2)
68
_uiScope
= uiScope;
216
_uiScope
= null;
55 references to _uiScope
PresentationFramework (55)
System\windows\Documents\TextEditor.cs (55)
73
((TextContainer)_textContainer).EnableUndo(
_uiScope
);
95
_uiScope
.IsEnabledChanged += new DependencyPropertyChangedEventHandler(OnIsEnabledChanged);
98
_uiScope
.SetValue(TextEditor.InstanceProperty, this);
103
if ((bool)
_uiScope
.GetValue(SpellCheck.IsEnabledProperty))
162
UndoManager undoManager = UndoManager.GetUndoManager(
_uiScope
);
167
((TextContainer)_textContainer).DisableUndo(
_uiScope
);
171
UndoManager.DetachUndoManager(
_uiScope
);
185
_uiScope
.IsEnabledChanged -= new DependencyPropertyChangedEventHandler(OnIsEnabledChanged);
215
_uiScope
.ClearValue(TextEditor.InstanceProperty);
280
TextBoxBase textBoxBase =
_uiScope
as TextBoxBase;
552
PopupControlService.Current.DismissToolTipsForOwner(
_uiScope
);
674
TextEditorTyping.OnPreviewKeyDown(
_uiScope
, e);
679
TextEditorTyping.OnKeyDown(
_uiScope
, e);
684
TextEditorTyping.OnKeyUp(
_uiScope
, e);
689
TextEditorTyping.OnTextInput(
_uiScope
, e);
694
TextEditorMouse.OnMouseDown(
_uiScope
, e);
699
TextEditorMouse.OnMouseMove(
_uiScope
, e);
704
TextEditorMouse.OnMouseUp(
_uiScope
, e);
709
TextEditorMouse.OnQueryCursor(
_uiScope
, e);
714
TextEditorDragDrop.OnQueryContinueDrag(
_uiScope
, e);
719
TextEditorDragDrop.OnGiveFeedback(
_uiScope
, e);
724
TextEditorDragDrop.OnDragEnter(
_uiScope
, e);
729
TextEditorDragDrop.OnDragOver(
_uiScope
, e);
734
TextEditorDragDrop.OnDragLeave(
_uiScope
, e);
739
TextEditorDragDrop.OnDrop(
_uiScope
, e);
744
TextEditorContextMenu.OnContextMenuOpening(
_uiScope
, e);
749
OnGotKeyboardFocus(
_uiScope
, e);
754
OnLostKeyboardFocus(
_uiScope
, e);
759
OnLostFocus(
_uiScope
, e);
847
get { return
_uiScope
; }
935
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(KeyboardNavigation.AcceptsReturnProperty);
947
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(TextBoxBase.AcceptsTabProperty);
951
Invariant.Assert(
_uiScope
!= null);
954
_uiScope
.SetValue(TextBoxBase.AcceptsTabProperty, value);
977
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(TextEditor.IsReadOnlyProperty);
1000
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(SpellCheck.IsEnabledProperty);
1004
Invariant.Assert(
_uiScope
!= null);
1005
_uiScope
.SetValue(SpellCheck.IsEnabledProperty, value);
1032
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(TextEditor.AllowOvertypeProperty);
1045
return
_uiScope
== null ? 0 : (int)
_uiScope
.GetValue(TextBox.MaxLengthProperty);
1057
return
_uiScope
== null ? CharacterCasing.Normal : (CharacterCasing)
_uiScope
.GetValue(TextBox.CharacterCasingProperty);
1069
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(RichTextBox.AutoWordSelectionProperty);
1081
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(TextBoxBase.IsReadOnlyCaretVisibleProperty);
1318
return
_uiScope
== null ? false :
_uiScope
.IsEnabled;
1718
This._immComposition = ImmComposition.GetImmComposition(This.
_uiScope
);