SplashScreen.Dismissed | dismissed event

0 out of 2 rated this helpful - Rate this topic

Fires when the app's splash screen is dismissed.

Syntax


function onDismissed(eventArgs) { /* Your code */ }
 
// addEventListener syntax
splashScreen.addEventListener("dismissed", onDismissed);
splashScreen.removeEventListener("dismissed", onDismissed);
 
- or -

splashScreen.ondismissed = onDismissed;


Event information

Delegate TypedEventHandler<SplashScreen, Object>

Remarks

When the dismissed event fires, the first view of your app is visible on the user's screen.

Avoid increasing the time required to load your app by using this event as a trigger to perform loading tasks (like loading network data) and animations.

Requirements

Minimum supported client

Windows 8

Minimum supported server

Windows Server 2012

Minimum supported phone

Windows Phone 8

Namespace

Windows.ApplicationModel.Activation
Windows::ApplicationModel::Activation [C++]

Metadata

Windows.winmd

See also

Splash screen sample
Quickstart: Adding a splash screen
How to extend the splash screen
Reference
SplashScreen class
Windows.ApplicationModel.Activation classes

 

 

Build date: 2/25/2013

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.