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