28 references to TextCompositionEventHandler
PresentationCore (28)
Core\CSharp\System\Windows\Generated\ContentElement.cs (2)
1854public event TextCompositionEventHandler PreviewTextInput 1873public event TextCompositionEventHandler TextInput
Core\CSharp\System\Windows\Generated\UIElement.cs (2)
4132public event TextCompositionEventHandler PreviewTextInput 4151public event TextCompositionEventHandler TextInput
Core\CSharp\System\Windows\Generated\UIElement3D.cs (2)
1560public event TextCompositionEventHandler PreviewTextInput 1579public event TextCompositionEventHandler TextInput
Core\CSharp\System\Windows\IInputElement.cs (2)
359event TextCompositionEventHandler PreviewTextInput; 364event TextCompositionEventHandler TextInput;
Core\CSharp\System\Windows\Input\TextCompositionEventArgs.cs (2)
91TextCompositionEventHandler handler = (TextCompositionEventHandler) genericHandler;
Core\CSharp\System\Windows\Input\TextCompositionManager.cs (18)
60public static readonly RoutedEvent PreviewTextInputStartEvent = EventManager.RegisterRoutedEvent("PreviewTextInputStart", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 67public static void AddPreviewTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 82public static void RemovePreviewTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 95public static readonly RoutedEvent TextInputStartEvent = EventManager.RegisterRoutedEvent("TextInputStart", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 102public static void AddTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 117public static void RemoveTextInputStartHandler(DependencyObject element, TextCompositionEventHandler handler) 130public static readonly RoutedEvent PreviewTextInputUpdateEvent = EventManager.RegisterRoutedEvent("PreviewTextInputUpdate", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 137public static void AddPreviewTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 152public static void RemovePreviewTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 165public static readonly RoutedEvent TextInputUpdateEvent = EventManager.RegisterRoutedEvent("TextInputUpdate", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 172public static void AddTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 187public static void RemoveTextInputUpdateHandler(DependencyObject element, TextCompositionEventHandler handler) 200public static readonly RoutedEvent PreviewTextInputEvent = EventManager.RegisterRoutedEvent("PreviewTextInput", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 207public static void AddPreviewTextInputHandler(DependencyObject element, TextCompositionEventHandler handler) 222public static void RemovePreviewTextInputHandler(DependencyObject element, TextCompositionEventHandler handler) 235public static readonly RoutedEvent TextInputEvent = EventManager.RegisterRoutedEvent("TextInput", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 242public static void AddTextInputHandler(DependencyObject element, TextCompositionEventHandler handler) 257public static void RemoveTextInputHandler(DependencyObject element, TextCompositionEventHandler handler)