18 references to TextStore
PresentationFramework (18)
MS\Internal\Helper.cs (1)
1482
System.Windows.Documents.TextStore ts = te.
TextStore
;
System\Windows\Controls\Primitives\TextBoxBase.cs (2)
2097
if ((textBox.TextEditor != null) && (textBox.TextEditor.
TextStore
!= null))
2105
textBox.TextEditor.
TextStore
.OnGotFocus();
System\windows\Documents\TextEditor.cs (1)
1278
TextStore
?.CompleteComposition();
System\windows\Documents\TextEditorContextMenu.cs (1)
550
TextStore textStore = textEditor.
TextStore
;
System\windows\Documents\TextEditorTyping.cs (12)
261
if (This.
TextStore
== null ||
262
This.
TextStore
.IsComposing)
381
if (composition.Owner == This.
TextStore
)
383
This.
TextStore
.UpdateCompositionText(composition);
428
if (This.
TextStore
!= null)
431
args.CanExecute = This.
TextStore
.QueryRangeOrReconvertSelection( /*fDoReconvert:*/ false);
452
This.
TextStore
?.QueryRangeOrReconvertSelection( /*fDoReconvert:*/ true);
470
if (TextServicesLoader.ServicesInstalled && (This.
TextStore
!= null))
483
TextServicesHost.StartTransitoryExtension(This.
TextStore
);
493
TextServicesHost.StopTransitoryExtension(This.
TextStore
);
1264
if (This.
TextStore
!= null && This.
TextStore
.IsComposing)
System\windows\Documents\TextSelection.cs (1)
2634
return _textEditor.
TextStore
;