14 references to PreviewTextInputEvent
PresentationCore (14)
Core\CSharp\System\Windows\Generated\ContentElement.cs (3)
1849
public static readonly RoutedEvent PreviewTextInputEvent = TextCompositionManager.
PreviewTextInputEvent
.AddOwner(_typeofThis);
1856
add { AddHandler(TextCompositionManager.
PreviewTextInputEvent
, value, false); }
1857
remove { RemoveHandler(TextCompositionManager.
PreviewTextInputEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
856
EventManager.RegisterClassHandler(type, TextCompositionManager.
PreviewTextInputEvent
, new TextCompositionEventHandler(UIElement.OnPreviewTextInputThunk), false);
4127
public static readonly RoutedEvent PreviewTextInputEvent = TextCompositionManager.
PreviewTextInputEvent
.AddOwner(_typeofThis);
4134
add { AddHandler(TextCompositionManager.
PreviewTextInputEvent
, value, false); }
4135
remove { RemoveHandler(TextCompositionManager.
PreviewTextInputEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement3D.cs (3)
1555
public static readonly RoutedEvent PreviewTextInputEvent = TextCompositionManager.
PreviewTextInputEvent
.AddOwner(_typeofThis);
1562
add { AddHandler(TextCompositionManager.
PreviewTextInputEvent
, value, false); }
1563
remove { RemoveHandler(TextCompositionManager.
PreviewTextInputEvent
, value); }
Core\CSharp\System\Windows\Input\TextCompositionManager.cs (4)
214
UIElement.AddHandler(element,
PreviewTextInputEvent
, handler);
229
UIElement.RemoveHandler(element,
PreviewTextInputEvent
, handler);
478
textargs.RoutedEvent=TextCompositionManager.
PreviewTextInputEvent
;
694
else if(e.StagingItem.Input.RoutedEvent == TextCompositionManager.
PreviewTextInputEvent
)