2 writes to _uiScope
PresentationFramework (2)
System\windows\Documents\TextEditor.cs (2)
62
_uiScope
= uiScope;
210
_uiScope
= null;
55 references to _uiScope
PresentationFramework (55)
System\windows\Documents\TextEditor.cs (55)
67
((TextContainer)_textContainer).EnableUndo(
_uiScope
);
89
_uiScope
.IsEnabledChanged += new DependencyPropertyChangedEventHandler(OnIsEnabledChanged);
92
_uiScope
.SetValue(TextEditor.InstanceProperty, this);
97
if ((bool)
_uiScope
.GetValue(SpellCheck.IsEnabledProperty))
156
UndoManager undoManager = UndoManager.GetUndoManager(
_uiScope
);
161
((TextContainer)_textContainer).DisableUndo(
_uiScope
);
165
UndoManager.DetachUndoManager(
_uiScope
);
179
_uiScope
.IsEnabledChanged -= new DependencyPropertyChangedEventHandler(OnIsEnabledChanged);
209
_uiScope
.ClearValue(TextEditor.InstanceProperty);
274
TextBoxBase textBoxBase =
_uiScope
as TextBoxBase;
546
PopupControlService.Current.DismissToolTipsForOwner(
_uiScope
);
668
TextEditorTyping.OnPreviewKeyDown(
_uiScope
, e);
673
TextEditorTyping.OnKeyDown(
_uiScope
, e);
678
TextEditorTyping.OnKeyUp(
_uiScope
, e);
683
TextEditorTyping.OnTextInput(
_uiScope
, e);
688
TextEditorMouse.OnMouseDown(
_uiScope
, e);
693
TextEditorMouse.OnMouseMove(
_uiScope
, e);
698
TextEditorMouse.OnMouseUp(
_uiScope
, e);
703
TextEditorMouse.OnQueryCursor(
_uiScope
, e);
708
TextEditorDragDrop.OnQueryContinueDrag(
_uiScope
, e);
713
TextEditorDragDrop.OnGiveFeedback(
_uiScope
, e);
718
TextEditorDragDrop.OnDragEnter(
_uiScope
, e);
723
TextEditorDragDrop.OnDragOver(
_uiScope
, e);
728
TextEditorDragDrop.OnDragLeave(
_uiScope
, e);
733
TextEditorDragDrop.OnDrop(
_uiScope
, e);
738
TextEditorContextMenu.OnContextMenuOpening(
_uiScope
, e);
743
OnGotKeyboardFocus(
_uiScope
, e);
748
OnLostKeyboardFocus(
_uiScope
, e);
753
OnLostFocus(
_uiScope
, e);
841
get { return
_uiScope
; }
929
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(KeyboardNavigation.AcceptsReturnProperty);
941
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(TextBoxBase.AcceptsTabProperty);
945
Invariant.Assert(
_uiScope
!= null);
948
_uiScope
.SetValue(TextBoxBase.AcceptsTabProperty, value);
971
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(TextEditor.IsReadOnlyProperty);
994
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(SpellCheck.IsEnabledProperty);
998
Invariant.Assert(
_uiScope
!= null);
999
_uiScope
.SetValue(SpellCheck.IsEnabledProperty, value);
1026
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(TextEditor.AllowOvertypeProperty);
1039
return
_uiScope
== null ? 0 : (int)
_uiScope
.GetValue(TextBox.MaxLengthProperty);
1051
return
_uiScope
== null ? CharacterCasing.Normal : (CharacterCasing)
_uiScope
.GetValue(TextBox.CharacterCasingProperty);
1063
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(RichTextBox.AutoWordSelectionProperty);
1075
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(TextBoxBase.IsReadOnlyCaretVisibleProperty);
1312
return
_uiScope
== null ? false :
_uiScope
.IsEnabled;
1712
This._immComposition = ImmComposition.GetImmComposition(This.
_uiScope
);