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