RichEditBox.TextChanged 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當 RichEditBox中的內容變更時發生。
// Register
event_token TextChanged(RoutedEventHandler const& handler) const;
// Revoke with event_token
void TextChanged(event_token const* cookie) const;
// Revoke with event_revoker
RichEditBox::TextChanged_revoker TextChanged(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler TextChanged;
function onTextChanged(eventArgs) { /* Your code */ }
richEditBox.addEventListener("textchanged", onTextChanged);
richEditBox.removeEventListener("textchanged", onTextChanged);
- or -
richEditBox.ontextchanged = onTextChanged;
Public Custom Event TextChanged As RoutedEventHandler
<RichEditBox TextChanged="eventhandler"/>