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