CoreFrameworkInputView.OcclusionsChanged 이벤트

정의

CoreFrameworkInputView와 연결된 입력 창의 위치 변경에 대한 응답으로 하나 이상의 CoreInputViewOcclusion 개체가 위치 또는 폐색 영역을 변경할 때 발생합니다.

// Register
event_token OcclusionsChanged(TypedEventHandler<CoreFrameworkInputView, CoreFrameworkInputViewOcclusionsChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CoreFrameworkInputView::OcclusionsChanged_revoker OcclusionsChanged(auto_revoke_t, TypedEventHandler<CoreFrameworkInputView, CoreFrameworkInputViewOcclusionsChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreFrameworkInputView,CoreFrameworkInputViewOcclusionsChangedEventArgs> OcclusionsChanged;
function onOcclusionsChanged(eventArgs) { /* Your code */ }
coreFrameworkInputView.addEventListener("occlusionschanged", onOcclusionsChanged);
coreFrameworkInputView.removeEventListener("occlusionschanged", onOcclusionsChanged);
- or -
coreFrameworkInputView.onocclusionschanged = onOcclusionsChanged;
Public Custom Event OcclusionsChanged As TypedEventHandler(Of CoreFrameworkInputView, CoreFrameworkInputViewOcclusionsChangedEventArgs) 

이벤트 유형

설명

이 이벤트가 발생하려면 애플리케이션이 포그라운드에 있어야 합니다.

적용 대상

추가 정보