WebUIFileOpenPickerActivatedEventArgs.SplashScreen Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 = webUIFileOpenPickerActivatedEventArgs.splashScreen;
Public ReadOnly Property SplashScreen As SplashScreen
Property Value
The object that provides splash screen information.
Implements
Examples
The Splash screen sample demonstrates how to retrieve a splashScreen object in its activated event handler, if the app was launched:
// Identify and respond to all app activated events.
WinJS.Application.onactivated = function (eventObject) {
// App was launched
if (eventObject.detail.kind === Windows.ApplicationModel.Activation.ActivationKind.launch) {
// Retrieve splash screen object
splash = eventObject.detail.splashScreen;
// Add code get image coordinates or listen for the dismissed event
WinJS.UI.processAll();
}
// Add code to respond to other activated event types
};
In the sample, eventObject
is an object provides information about the activated event. In the case of a ActivationKind.launch activated event, the eventObject
is a WebUILaunchActivatedEventArgs object.