28 references to TextCompositionEventHandler
PresentationCore (28)
System\Windows\Generated\ContentElement.cs (2)
1794public event TextCompositionEventHandler PreviewTextInput 1813public event TextCompositionEventHandler TextInput
System\Windows\Generated\UIElement.cs (2)
3747public event TextCompositionEventHandler PreviewTextInput 3766public event TextCompositionEventHandler TextInput
System\Windows\Generated\UIElement3D.cs (2)
1515public event TextCompositionEventHandler PreviewTextInput 1534public event TextCompositionEventHandler TextInput
System\Windows\IInputElement.cs (2)
362event TextCompositionEventHandler PreviewTextInput; 367event TextCompositionEventHandler TextInput;
System\Windows\Input\TextCompositionEventArgs.cs (2)
86TextCompositionEventHandler handler = (TextCompositionEventHandler) genericHandler;
System\Windows\Input\TextCompositionManager.cs (18)
54public static readonly RoutedEvent PreviewTextInputStartEvent = EventManager.RegisterRoutedEvent("PreviewTextInputStart", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 61public static void AddPreviewTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 73public static void RemovePreviewTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 83public static readonly RoutedEvent TextInputStartEvent = EventManager.RegisterRoutedEvent("TextInputStart", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 90public static void AddTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 102public static void RemoveTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 112public static readonly RoutedEvent PreviewTextInputUpdateEvent = EventManager.RegisterRoutedEvent("PreviewTextInputUpdate", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 119public static void AddPreviewTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 131public static void RemovePreviewTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 141public static readonly RoutedEvent TextInputUpdateEvent = EventManager.RegisterRoutedEvent("TextInputUpdate", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 148public static void AddTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 160public static void RemoveTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 170public static readonly RoutedEvent PreviewTextInputEvent = EventManager.RegisterRoutedEvent("PreviewTextInput", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 177public static void AddPreviewTextInputHandler(DependencyObject element, TextCompositionEventHandler handler) 189public static void RemovePreviewTextInputHandler(DependencyObject element, TextCompositionEventHandler handler) 199public static readonly RoutedEvent TextInputEvent = EventManager.RegisterRoutedEvent("TextInput", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 206public static void AddTextInputHandler(DependencyObject element, TextCompositionEventHandler handler) 218public static void RemoveTextInputHandler(DependencyObject element, TextCompositionEventHandler handler)