2 writes to _uiScope
PresentationFramework (2)
System\windows\Documents\TextEditor.cs (2)
56
_uiScope
= uiScope;
204
_uiScope
= null;
55 references to _uiScope
PresentationFramework (55)
System\windows\Documents\TextEditor.cs (55)
61
((TextContainer)_textContainer).EnableUndo(
_uiScope
);
83
_uiScope
.IsEnabledChanged += new DependencyPropertyChangedEventHandler(OnIsEnabledChanged);
86
_uiScope
.SetValue(TextEditor.InstanceProperty, this);
91
if ((bool)
_uiScope
.GetValue(SpellCheck.IsEnabledProperty))
150
UndoManager undoManager = UndoManager.GetUndoManager(
_uiScope
);
155
((TextContainer)_textContainer).DisableUndo(
_uiScope
);
159
UndoManager.DetachUndoManager(
_uiScope
);
173
_uiScope
.IsEnabledChanged -= new DependencyPropertyChangedEventHandler(OnIsEnabledChanged);
203
_uiScope
.ClearValue(TextEditor.InstanceProperty);
268
TextBoxBase textBoxBase =
_uiScope
as TextBoxBase;
539
PopupControlService.Current.DismissToolTipsForOwner(
_uiScope
);
661
TextEditorTyping.OnPreviewKeyDown(
_uiScope
, e);
666
TextEditorTyping.OnKeyDown(
_uiScope
, e);
671
TextEditorTyping.OnKeyUp(
_uiScope
, e);
676
TextEditorTyping.OnTextInput(
_uiScope
, e);
681
TextEditorMouse.OnMouseDown(
_uiScope
, e);
686
TextEditorMouse.OnMouseMove(
_uiScope
, e);
691
TextEditorMouse.OnMouseUp(
_uiScope
, e);
696
TextEditorMouse.OnQueryCursor(
_uiScope
, e);
701
TextEditorDragDrop.OnQueryContinueDrag(
_uiScope
, e);
706
TextEditorDragDrop.OnGiveFeedback(
_uiScope
, e);
711
TextEditorDragDrop.OnDragEnter(
_uiScope
, e);
716
TextEditorDragDrop.OnDragOver(
_uiScope
, e);
721
TextEditorDragDrop.OnDragLeave(
_uiScope
, e);
726
TextEditorDragDrop.OnDrop(
_uiScope
, e);
731
TextEditorContextMenu.OnContextMenuOpening(
_uiScope
, e);
736
OnGotKeyboardFocus(
_uiScope
, e);
741
OnLostKeyboardFocus(
_uiScope
, e);
746
OnLostFocus(
_uiScope
, e);
834
get { return
_uiScope
; }
922
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(KeyboardNavigation.AcceptsReturnProperty);
934
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(TextBoxBase.AcceptsTabProperty);
938
Invariant.Assert(
_uiScope
!= null);
941
_uiScope
.SetValue(TextBoxBase.AcceptsTabProperty, value);
964
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(TextEditor.IsReadOnlyProperty);
987
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(SpellCheck.IsEnabledProperty);
991
Invariant.Assert(
_uiScope
!= null);
992
_uiScope
.SetValue(SpellCheck.IsEnabledProperty, value);
1019
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(TextEditor.AllowOvertypeProperty);
1032
return
_uiScope
== null ? 0 : (int)
_uiScope
.GetValue(TextBox.MaxLengthProperty);
1044
return
_uiScope
== null ? CharacterCasing.Normal : (CharacterCasing)
_uiScope
.GetValue(TextBox.CharacterCasingProperty);
1056
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(RichTextBox.AutoWordSelectionProperty);
1068
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(TextBoxBase.IsReadOnlyCaretVisibleProperty);
1299
return
_uiScope
== null ? false :
_uiScope
.IsEnabled;
1690
This._immComposition = ImmComposition.GetImmComposition(This.
_uiScope
);