28 references to TextCompositionEventHandler
PresentationCore (28)
System\Windows\Generated\ContentElement.cs (2)
1778public event TextCompositionEventHandler PreviewTextInput 1797public event TextCompositionEventHandler TextInput
System\Windows\Generated\UIElement.cs (2)
3731public event TextCompositionEventHandler PreviewTextInput 3750public event TextCompositionEventHandler TextInput
System\Windows\Generated\UIElement3D.cs (2)
1508public event TextCompositionEventHandler PreviewTextInput 1527public event TextCompositionEventHandler TextInput
System\Windows\IInputElement.cs (2)
360event TextCompositionEventHandler PreviewTextInput; 365event TextCompositionEventHandler TextInput;
System\Windows\Input\TextCompositionEventArgs.cs (2)
83TextCompositionEventHandler handler = (TextCompositionEventHandler) genericHandler;
System\Windows\Input\TextCompositionManager.cs (18)
48public static readonly RoutedEvent PreviewTextInputStartEvent = EventManager.RegisterRoutedEvent("PreviewTextInputStart", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 55public static void AddPreviewTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 67public static void RemovePreviewTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 77public static readonly RoutedEvent TextInputStartEvent = EventManager.RegisterRoutedEvent("TextInputStart", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 84public static void AddTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 96public static void RemoveTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 106public static readonly RoutedEvent PreviewTextInputUpdateEvent = EventManager.RegisterRoutedEvent("PreviewTextInputUpdate", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 113public static void AddPreviewTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 125public static void RemovePreviewTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 135public static readonly RoutedEvent TextInputUpdateEvent = EventManager.RegisterRoutedEvent("TextInputUpdate", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 142public static void AddTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 154public static void RemoveTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 164public static readonly RoutedEvent PreviewTextInputEvent = EventManager.RegisterRoutedEvent("PreviewTextInput", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 171public static void AddPreviewTextInputHandler(DependencyObject element, TextCompositionEventHandler handler) 183public static void RemovePreviewTextInputHandler(DependencyObject element, TextCompositionEventHandler handler) 193public static readonly RoutedEvent TextInputEvent = EventManager.RegisterRoutedEvent("TextInput", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 200public static void AddTextInputHandler(DependencyObject element, TextCompositionEventHandler handler) 212public static void RemoveTextInputHandler(DependencyObject element, TextCompositionEventHandler handler)