SplashScreen.Dismissed 이벤트

정의

앱의 시작 화면이 해제되면 발생합니다.

// Register
event_token Dismissed(TypedEventHandler<SplashScreen, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
SplashScreen::Dismissed_revoker Dismissed(auto_revoke_t, TypedEventHandler<SplashScreen, IInspectable const&> const& handler) const;
public event TypedEventHandler<SplashScreen,object> Dismissed;
function onDismissed(eventArgs) { /* Your code */ }
splashScreen.addEventListener("dismissed", onDismissed);
splashScreen.removeEventListener("dismissed", onDismissed);
- or -
splashScreen.ondismissed = onDismissed;
Public Custom Event Dismissed As TypedEventHandler(Of SplashScreen, Object) 

이벤트 유형

설명

해제된 이벤트가 발생하면 앱의 첫 번째 보기가 사용자의 화면에 표시됩니다.

이 이벤트를 트리거로 사용하여 로드 작업(예: 네트워크 데이터 로드) 및 애니메이션을 수행하여 앱을 로드하는 데 필요한 시간을 늘리지 마세요.

적용 대상

추가 정보