28 references to TextCompositionEventHandler
PresentationCore (28)
System\Windows\Generated\ContentElement.cs (2)
1782public event TextCompositionEventHandler PreviewTextInput 1801public event TextCompositionEventHandler TextInput
System\Windows\Generated\UIElement.cs (2)
3735public event TextCompositionEventHandler PreviewTextInput 3754public event TextCompositionEventHandler TextInput
System\Windows\Generated\UIElement3D.cs (2)
1507public event TextCompositionEventHandler PreviewTextInput 1526public event TextCompositionEventHandler TextInput
System\Windows\IInputElement.cs (2)
361event TextCompositionEventHandler PreviewTextInput; 366event TextCompositionEventHandler TextInput;
System\Windows\Input\TextCompositionEventArgs.cs (2)
84TextCompositionEventHandler handler = (TextCompositionEventHandler) genericHandler;
System\Windows\Input\TextCompositionManager.cs (18)
38public static readonly RoutedEvent PreviewTextInputStartEvent = EventManager.RegisterRoutedEvent("PreviewTextInputStart", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 45public static void AddPreviewTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 57public static void RemovePreviewTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 67public static readonly RoutedEvent TextInputStartEvent = EventManager.RegisterRoutedEvent("TextInputStart", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 74public static void AddTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 86public static void RemoveTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 96public static readonly RoutedEvent PreviewTextInputUpdateEvent = EventManager.RegisterRoutedEvent("PreviewTextInputUpdate", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 103public static void AddPreviewTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 115public static void RemovePreviewTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 125public static readonly RoutedEvent TextInputUpdateEvent = EventManager.RegisterRoutedEvent("TextInputUpdate", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 132public static void AddTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 144public static void RemoveTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 154public static readonly RoutedEvent PreviewTextInputEvent = EventManager.RegisterRoutedEvent("PreviewTextInput", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 161public static void AddPreviewTextInputHandler(DependencyObject element, TextCompositionEventHandler handler) 173public static void RemovePreviewTextInputHandler(DependencyObject element, TextCompositionEventHandler handler) 183public static readonly RoutedEvent TextInputEvent = EventManager.RegisterRoutedEvent("TextInput", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 190public static void AddTextInputHandler(DependencyObject element, TextCompositionEventHandler handler) 202public static void RemoveTextInputHandler(DependencyObject element, TextCompositionEventHandler handler)