Share via


KeyboardInputBuffer.TextChanged 이벤트

정의

입력 버퍼에서 콘텐츠가 변경되면 발생합니다.

// Register
event_token TextChanged(TypedEventHandler<KeyboardInputBuffer, CoreTextChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
KeyboardInputBuffer::TextChanged_revoker TextChanged(auto_revoke_t, TypedEventHandler<KeyboardInputBuffer, CoreTextChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<KeyboardInputBuffer,CoreTextChangedEventArgs> TextChanged;
function onTextChanged(eventArgs) { /* Your code */ }
keyboardInputBuffer.addEventListener("textchanged", onTextChanged);
keyboardInputBuffer.removeEventListener("textchanged", onTextChanged);
- or -
keyboardInputBuffer.ontextchanged = onTextChanged;
Public Custom Event TextChanged As TypedEventHandler(Of KeyboardInputBuffer, CoreTextChangedEventArgs) 

이벤트 유형

적용 대상