WebUIFileSavePickerActivatedEventArgs.SplashScreen Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene l'oggetto schermata iniziale che fornisce informazioni sulla transizione dalla schermata iniziale all'app attivata.
public:
property SplashScreen ^ SplashScreen { SplashScreen ^ get(); };
SplashScreen SplashScreen();
public SplashScreen SplashScreen { get; }
var splashScreen = webUIFileSavePickerActivatedEventArgs.splashScreen;
Public ReadOnly Property SplashScreen As SplashScreen
Valore della proprietà
Oggetto che fornisce informazioni sullo schermo iniziale.
Implementazioni
Esempio
L'esempio di schermata Iniziale illustra come recuperare un oggetto splashScreen nel gestore eventi attivato, se l'app è stata avviata:
// 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
};
Nell'esempio è eventObject
un oggetto che fornisce informazioni sull'evento attivato. Nel caso di un evento ActivationKind.launch attivato, l'oggetto eventObject
è un oggetto WebUILaunchActivatedEventArgs .