SplashScreen.Dismissed 이벤트
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
앱의 시작 화면이 해제되면 발생합니다.
// 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)
이벤트 유형
TypedEventHandler<SplashScreen,IInspectable>
설명
해제된 이벤트가 발생하면 앱의 첫 번째 보기가 사용자의 화면에 표시됩니다.
이 이벤트를 트리거로 사용하여 로드 작업(예: 네트워크 데이터 로드) 및 애니메이션을 수행하여 앱을 로드하는 데 필요한 시간을 늘리지 마세요.