WebUILaunchActivatedEventArgs.SplashScreen Property

Definition

Gets the splash screen object that provides information about the transition from the splash screen to the activated app.

public:
 property SplashScreen ^ SplashScreen { SplashScreen ^ get(); };
SplashScreen SplashScreen();
public SplashScreen SplashScreen { get; }
var splashScreen = webUILaunchActivatedEventArgs.splashScreen;
Public ReadOnly Property SplashScreen As SplashScreen

Property Value

The object that provides splash screen information.

Implements

Remarks

This property is only meaningful when the app is activated under a contract that expects a window to be presented. If the contract doesn't require a window or if the app is being activated for a background task, this call will fail.

You can listen for the SplashScreen.Dismissed event to trigger additional loading tasks.

Applies to