TextBox.TextCompositionChanged Событие

Определение

Происходит при создании текста с помощью метода ввода, Редактор изменения (IME).

// Register
event_token TextCompositionChanged(TypedEventHandler<TextBox, TextCompositionChangedEventArgs const&> const& handler) const;

// Revoke with event_token
void TextCompositionChanged(event_token const* cookie) const;

// Revoke with event_revoker
TextBox::TextCompositionChanged_revoker TextCompositionChanged(auto_revoke_t, TypedEventHandler<TextBox, TextCompositionChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<TextBox,TextCompositionChangedEventArgs> TextCompositionChanged;
function onTextCompositionChanged(eventArgs) { /* Your code */ }
textBox.addEventListener("textcompositionchanged", onTextCompositionChanged);
textBox.removeEventListener("textcompositionchanged", onTextCompositionChanged);
- or -
textBox.ontextcompositionchanged = onTextCompositionChanged;
Public Custom Event TextCompositionChanged As TypedEventHandler(Of TextBox, TextCompositionChangedEventArgs) 
<TextBox TextCompositionChanged="eventhandler"/>

Тип события

Комментарии

Сведения о событиях см. в разделе TextCompositionChangedEventArgs.

Это событие возникает только в том случае, если текст создается с помощью метода ввода Редактор (IME). События композиции текста происходят в следующем порядке:

После события TextCompositionStarted цикл событий TextChanging>TextChanged> TextCompositionChanged Может происходить несколько раз до возникновения события TextCompositionEnded .

Применяется к

См. также раздел