다음을 통해 공유


WebUIFileSavePickerActivatedEventArgs.SplashScreen 속성

정의

시작 화면에서 활성화된 앱으로의 전환에 대한 정보를 제공하는 시작 화면 개체를 가져옵니다.

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

속성 값

시작 화면 정보를 제공하는 개체입니다.

구현

예제

Splash 화면 샘플은 앱이 시작된 경우 활성화된 이벤트 처리기에서 splashScreen 개체를 검색하는 방법을 보여 줍니다.

// 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
};

샘플에서 는 eventObject 활성화된 이벤트에 대한 정보를 제공하는 개체입니다. ActivationKind.launch 활성화 이벤트의 eventObject 경우 는 WebUILaunchActivatedEventArgs 개체입니다.

적용 대상