20 references to TextStore
PresentationFramework (20)
MS\Internal\Helper.cs (1)
1488System.Windows.Documents.TextStore ts = te.TextStore;
System\Windows\Controls\Primitives\TextBoxBase.cs (2)
2167if ((textBox.TextEditor != null) && (textBox.TextEditor.TextStore != null)) 2175textBox.TextEditor.TextStore.OnGotFocus();
System\windows\Documents\TextEditor.cs (2)
1284if (TextStore != null) 1286TextStore.CompleteComposition();
System\windows\Documents\TextEditorContextMenu.cs (1)
544TextStore textStore = textEditor.TextStore;
System\windows\Documents\TextEditorTyping.cs (13)
264if (This.TextStore == null || 265This.TextStore.IsComposing) 387if (composition.Owner == This.TextStore) 389This.TextStore.UpdateCompositionText(composition); 434if (This.TextStore != null) 437args.CanExecute = This.TextStore.QueryRangeOrReconvertSelection( /*fDoReconvert:*/ false); 458if (This.TextStore != null) 460This.TextStore.QueryRangeOrReconvertSelection( /*fDoReconvert:*/ true); 479if (TextServicesLoader.ServicesInstalled && (This.TextStore != null)) 492TextServicesHost.StartTransitoryExtension(This.TextStore); 502TextServicesHost.StopTransitoryExtension(This.TextStore); 1273if (This.TextStore != null && This.TextStore.IsComposing)
System\windows\Documents\TextSelection.cs (1)
2647return _textEditor.TextStore;