TextBox.TextCompositionChanged 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生於透過輸入法撰寫的文字 編輯器 (輸入法) 變更時。
// 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。
只有在透過輸入法 編輯器 (輸入法) 撰寫文字時,才會發生此事件。 文字組合事件會依下列順序發生:
- TextCompositionStarted
- TextChanging
- TextChanged
- TextCompositionChanged
- TextCompositionEnded
在 TextCompositionStarted 事件之後,TextChanged> TextChanged >TextCompositionChanged 事件週期可以在 TextCompositionEnded 事件發生之前多次發生。