20 references to TextStore
PresentationFramework (20)
src\Framework\MS\Internal\Helper.cs (1)
1513
System.Windows.Documents.TextStore ts = te.
TextStore
;
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (2)
2212
if ((textBox.TextEditor != null) && (textBox.TextEditor.
TextStore
!= null))
2220
textBox.TextEditor.
TextStore
.OnGotFocus();
src\Framework\System\windows\Documents\TextEditor.cs (2)
1317
if (
TextStore
!= null)
1319
TextStore
.CompleteComposition();
src\Framework\System\windows\Documents\TextEditorContextMenu.cs (1)
578
TextStore textStore = textEditor.
TextStore
;
src\Framework\System\windows\Documents\TextEditorTyping.cs (13)
277
if (This.
TextStore
== null ||
278
This.
TextStore
.IsComposing)
401
if (composition.Owner == This.
TextStore
)
403
This.
TextStore
.UpdateCompositionText(composition);
449
if (This.
TextStore
!= null)
452
args.CanExecute = This.
TextStore
.QueryRangeOrReconvertSelection( /*fDoReconvert:*/ false);
473
if (This.
TextStore
!= null)
475
This.
TextStore
.QueryRangeOrReconvertSelection( /*fDoReconvert:*/ true);
504
if (TextServicesLoader.ServicesInstalled && (This.
TextStore
!= null))
517
TextServicesHost.StartTransitoryExtension(This.
TextStore
);
527
TextServicesHost.StopTransitoryExtension(This.
TextStore
);
1299
if (This.
TextStore
!= null && This.
TextStore
.IsComposing)
src\Framework\System\windows\Documents\TextSelection.cs (1)
2663
return _textEditor.
TextStore
;