18 references to TextStore
PresentationFramework (18)
MS\Internal\Helper.cs (1)
1481
System.Windows.Documents.TextStore ts = te.
TextStore
;
System\Windows\Controls\Primitives\TextBoxBase.cs (2)
2096
if ((textBox.TextEditor != null) && (textBox.TextEditor.
TextStore
!= null))
2104
textBox.TextEditor.
TextStore
.OnGotFocus();
System\windows\Documents\TextEditor.cs (1)
1277
TextStore
?.CompleteComposition();
System\windows\Documents\TextEditorContextMenu.cs (1)
549
TextStore textStore = textEditor.
TextStore
;
System\windows\Documents\TextEditorTyping.cs (12)
260
if (This.
TextStore
== null ||
261
This.
TextStore
.IsComposing)
380
if (composition.Owner == This.
TextStore
)
382
This.
TextStore
.UpdateCompositionText(composition);
427
if (This.
TextStore
!= null)
430
args.CanExecute = This.
TextStore
.QueryRangeOrReconvertSelection( /*fDoReconvert:*/ false);
451
This.
TextStore
?.QueryRangeOrReconvertSelection( /*fDoReconvert:*/ true);
469
if (TextServicesLoader.ServicesInstalled && (This.
TextStore
!= null))
482
TextServicesHost.StartTransitoryExtension(This.
TextStore
);
492
TextServicesHost.StopTransitoryExtension(This.
TextStore
);
1263
if (This.
TextStore
!= null && This.
TextStore
.IsComposing)
System\windows\Documents\TextSelection.cs (1)
2633
return _textEditor.
TextStore
;