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