Share via


InputActivationListener.InputActivationChanged 이벤트

정의

창, 보기 또는 기타 시각적 요소가 새 활성화 상태로의 전환을 완료할 때 발생합니다.

// Register
event_token InputActivationChanged(TypedEventHandler<InputActivationListener, InputActivationListenerActivationChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
InputActivationListener::InputActivationChanged_revoker InputActivationChanged(auto_revoke_t, TypedEventHandler<InputActivationListener, InputActivationListenerActivationChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<InputActivationListener,InputActivationListenerActivationChangedEventArgs> InputActivationChanged;
function onInputActivationChanged(eventArgs) { /* Your code */ }
inputActivationListener.addEventListener("inputactivationchanged", onInputActivationChanged);
inputActivationListener.removeEventListener("inputactivationchanged", onInputActivationChanged);
- or -
inputActivationListener.oninputactivationchanged = onInputActivationChanged;
Public Custom Event InputActivationChanged As TypedEventHandler(Of InputActivationListener, InputActivationListenerActivationChangedEventArgs) 

이벤트 유형

적용 대상

추가 정보