UIElement3D.PreviewTextInput Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when this element gets text in a device-independent manner.
public:
virtual event System::Windows::Input::TextCompositionEventHandler ^ PreviewTextInput;
public event System.Windows.Input.TextCompositionEventHandler PreviewTextInput;
member this.PreviewTextInput : System.Windows.Input.TextCompositionEventHandler
Public Custom Event PreviewTextInput As TextCompositionEventHandler
Event Type
Implements
Remarks
The PreviewTextInput event allows a component or application to listen for text input in a device-independent manner. The keyboard is the primary means of PreviewTextInput; but speech, handwriting, and other input devices can also generate PreviewTextInput.
Because of key combinations - either in default keyboards or through input method editors - multiple key events may raise just one text input event.
This event creates an alias for the TextCompositionManager.PreviewTextInput attached event for this class, so that PreviewTextInput is part of the class members list when UIElement3D is inherited as a base element. Event handlers that are attached to the PreviewTextInput event are attached to the underlying TextCompositionManager.PreviewTextInput attached event and receive the same event data instance.
Routed Event Information
Identifier field | PreviewTextInputEvent |
Routing strategy | Tunneling |
Delegate | TextCompositionEventHandler |
The corresponding bubbling event is TextInput.
Override OnPreviewTextInput to implement class handling for this event in derived classes.