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);
262
TextBoxBase textBoxBase =
_uiScope
as TextBoxBase;
533
PopupControlService.Current.DismissToolTipsForOwner(
_uiScope
);
655
TextEditorTyping.OnPreviewKeyDown(
_uiScope
, e);
660
TextEditorTyping.OnKeyDown(
_uiScope
, e);
665
TextEditorTyping.OnKeyUp(
_uiScope
, e);
670
TextEditorTyping.OnTextInput(
_uiScope
, e);
675
TextEditorMouse.OnMouseDown(
_uiScope
, e);
680
TextEditorMouse.OnMouseMove(
_uiScope
, e);
685
TextEditorMouse.OnMouseUp(
_uiScope
, e);
690
TextEditorMouse.OnQueryCursor(
_uiScope
, e);
695
TextEditorDragDrop.OnQueryContinueDrag(
_uiScope
, e);
700
TextEditorDragDrop.OnGiveFeedback(
_uiScope
, e);
705
TextEditorDragDrop.OnDragEnter(
_uiScope
, e);
710
TextEditorDragDrop.OnDragOver(
_uiScope
, e);
715
TextEditorDragDrop.OnDragLeave(
_uiScope
, e);
720
TextEditorDragDrop.OnDrop(
_uiScope
, e);
725
TextEditorContextMenu.OnContextMenuOpening(
_uiScope
, e);
730
OnGotKeyboardFocus(
_uiScope
, e);
735
OnLostKeyboardFocus(
_uiScope
, e);
740
OnLostFocus(
_uiScope
, e);
828
get { return
_uiScope
; }
916
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(KeyboardNavigation.AcceptsReturnProperty);
928
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(TextBoxBase.AcceptsTabProperty);
932
Invariant.Assert(
_uiScope
!= null);
935
_uiScope
.SetValue(TextBoxBase.AcceptsTabProperty, value);
958
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(TextEditor.IsReadOnlyProperty);
981
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(SpellCheck.IsEnabledProperty);
985
Invariant.Assert(
_uiScope
!= null);
986
_uiScope
.SetValue(SpellCheck.IsEnabledProperty, value);
1013
return
_uiScope
== null ? true : (bool)
_uiScope
.GetValue(TextEditor.AllowOvertypeProperty);
1026
return
_uiScope
== null ? 0 : (int)
_uiScope
.GetValue(TextBox.MaxLengthProperty);
1038
return
_uiScope
== null ? CharacterCasing.Normal : (CharacterCasing)
_uiScope
.GetValue(TextBox.CharacterCasingProperty);
1050
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(RichTextBox.AutoWordSelectionProperty);
1062
return
_uiScope
== null ? false : (bool)
_uiScope
.GetValue(TextBoxBase.IsReadOnlyCaretVisibleProperty);
1293
return
_uiScope
== null ? false :
_uiScope
.IsEnabled;
1684
This._immComposition = ImmComposition.GetImmComposition(This.
_uiScope
);