20 references to TextStore
PresentationFramework (20)
MS\Internal\Helper.cs (1)
1497System.Windows.Documents.TextStore ts = te.TextStore;
System\Windows\Controls\Primitives\TextBoxBase.cs (2)
2176if ((textBox.TextEditor != null) && (textBox.TextEditor.TextStore != null)) 2184textBox.TextEditor.TextStore.OnGotFocus();
System\windows\Documents\TextEditor.cs (2)
1290if (TextStore != null) 1292TextStore.CompleteComposition();
System\windows\Documents\TextEditorContextMenu.cs (1)
546TextStore textStore = textEditor.TextStore;
System\windows\Documents\TextEditorTyping.cs (13)
273if (This.TextStore == null || 274This.TextStore.IsComposing) 396if (composition.Owner == This.TextStore) 398This.TextStore.UpdateCompositionText(composition); 443if (This.TextStore != null) 446args.CanExecute = This.TextStore.QueryRangeOrReconvertSelection( /*fDoReconvert:*/ false); 467if (This.TextStore != null) 469This.TextStore.QueryRangeOrReconvertSelection( /*fDoReconvert:*/ true); 488if (TextServicesLoader.ServicesInstalled && (This.TextStore != null)) 501TextServicesHost.StartTransitoryExtension(This.TextStore); 511TextServicesHost.StopTransitoryExtension(This.TextStore); 1282if (This.TextStore != null && This.TextStore.IsComposing)
System\windows\Documents\TextSelection.cs (1)
2650return _textEditor.TextStore;