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;
543
PopupControlService.Current.DismissToolTipsForOwner(
_uiScope
);
665
TextEditorTyping.OnPreviewKeyDown(
_uiScope
, e);
670
TextEditorTyping.OnKeyDown(
_uiScope
, e);
675
TextEditorTyping.OnKeyUp(
_uiScope
, e);
680
TextEditorTyping.OnTextInput(
_uiScope
, e);
685
TextEditorMouse.OnMouseDown(
_uiScope
, e);
690
TextEditorMouse.OnMouseMove(
_uiScope
, e);
695
TextEditorMouse.OnMouseUp(
_uiScope
, e);
700
TextEditorMouse.OnQueryCursor(
_uiScope
, e);
705
TextEditorDragDrop.OnQueryContinueDrag(
_uiScope
, e);
710
TextEditorDragDrop.OnGiveFeedback(
_uiScope
, e);
715
TextEditorDragDrop.OnDragEnter(
_uiScope
, e);
720
TextEditorDragDrop.OnDragOver(
_uiScope
, e);
725
TextEditorDragDrop.OnDragLeave(
_uiScope
, e);
730
TextEditorDragDrop.OnDrop(
_uiScope
, e);
735
TextEditorContextMenu.OnContextMenuOpening(
_uiScope
, e);
740
OnGotKeyboardFocus(
_uiScope
, e);
745
OnLostKeyboardFocus(
_uiScope
, e);
750
OnLostFocus(
_uiScope
, e);
838
get { return
_uiScope
; }
926
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(KeyboardNavigation.AcceptsReturnProperty);
938
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(TextBoxBase.AcceptsTabProperty);
942
Invariant.Assert(
_uiScope
!= null);
945
_uiScope
.SetValue(TextBoxBase.AcceptsTabProperty, value);
968
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(TextEditor.IsReadOnlyProperty);
991
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(SpellCheck.IsEnabledProperty);
995
Invariant.Assert(
_uiScope
!= null);
996
_uiScope
.SetValue(SpellCheck.IsEnabledProperty, value);
1023
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(TextEditor.AllowOvertypeProperty);
1036
return
_uiScope
== null ? 0 : (int)
_uiScope
.GetValue(TextBox.MaxLengthProperty);
1048
return
_uiScope
== null ? CharacterCasing.Normal : (CharacterCasing)
_uiScope
.GetValue(TextBox.CharacterCasingProperty);
1060
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(RichTextBox.AutoWordSelectionProperty);
1072
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(TextBoxBase.IsReadOnlyCaretVisibleProperty);
1309
return
_uiScope
== null ? false :
_uiScope
.IsEnabled;
1709
This._immComposition = ImmComposition.GetImmComposition(This.
_uiScope
);