다음을 통해 공유


PreviewTeamView.IsFullScreenChanged 이벤트

정의

이제 앱 창이 전체 화면임을 나타냅니다.

// Register
event_token IsFullScreenChanged(TypedEventHandler<PreviewTeamView, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
PreviewTeamView::IsFullScreenChanged_revoker IsFullScreenChanged(auto_revoke_t, TypedEventHandler<PreviewTeamView, IInspectable const&> const& handler) const;
public event TypedEventHandler<PreviewTeamView,object> IsFullScreenChanged;
function onIsFullScreenChanged(eventArgs) { /* Your code */ }
previewTeamView.addEventListener("isfullscreenchanged", onIsFullScreenChanged);
previewTeamView.removeEventListener("isfullscreenchanged", onIsFullScreenChanged);
- or -
previewTeamView.onisfullscreenchanged = onIsFullScreenChanged;
Public Custom Event IsFullScreenChanged As TypedEventHandler(Of PreviewTeamView, Object) 

이벤트 유형

설명

현재 상태를 확인하려면 IsFullScreen 속성을 검사.

적용 대상