4 references to TextComposition
PresentationCore (4)
System\Windows\Input\DeadCharTextComposition.cs (1)
26
internal DeadCharTextComposition(InputManager inputManager, IInputElement source, string text, TextCompositionAutoComplete autoComplete, InputDevice inputDevice) :
base
(inputManager, source, text, autoComplete, inputDevice)
System\Windows\Input\TextComposition.cs (1)
81
public TextComposition(InputManager inputManager, IInputElement source, string resultText, TextCompositionAutoComplete autoComplete) :
this
(inputManager, source, resultText, autoComplete, InputManager.Current.PrimaryKeyboardDevice)
System\Windows\Input\TextCompositionManager.cs (2)
423
_altNumpadcomposition = new
TextComposition
(_inputManager, (IInputElement)keyArgs.Source, "", TextCompositionAutoComplete.Off, keyArgs.Device);
648
TextComposition composition = new
TextComposition
(_inputManager, (IInputElement)e.StagingItem.Input.Source, inputText, TextCompositionAutoComplete.On, InputManager.Current.PrimaryKeyboardDevice);