2015 年 11 月 18 日の新しい更新で、Windows アプリ認定キットは起動前のテストをチェックしており、このサンプルを使用してみました
https://msdn.microsoft.com/en-us/library/windows/apps/mt593297.aspx
ただし、WinJS のサンプルは見つかりません。WinJS アプリでこれを行うにはどうすればよいですか?
2015 年 11 月 18 日の新しい更新で、Windows アプリ認定キットは起動前のテストをチェックしており、このサンプルを使用してみました
https://msdn.microsoft.com/en-us/library/windows/apps/mt593297.aspx
ただし、WinJS のサンプルは見つかりません。WinJS アプリでこれを行うにはどうすればよいですか?
関数をチェックインする必要args.detail.prelaunchActivated
がありapp.onactivated
ます。次のコードは、Visual Studio 2015 Update 1 によってビルドされたテンプレートから更新され、C++/C# のテンプレートが参照されています。
default.js
// For an introduction to the Blank template, see the following documentation:
// http://go.microsoft.com/fwlink/?LinkId=232509
(function () {
"use strict";
var app = WinJS.Application;
var activation = Windows.ApplicationModel.Activation;
app.onactivated = function (args) {
if (args.detail.kind === activation.ActivationKind.launch) {
if (args.detail.previousExecutionState === activation.ApplicationExecutionState.terminated) {
// TODO: This application was suspended and then terminated.
// To create a smooth user experience, restore application state here so that it looks like the app never stopped running.
}
if (!args.detail.prelaunchActivated) {
// TODO: This is not a prelaunch activation. Perform operations which
// assume that the user explicitly launched the app such as updating
// the online presence of the user on a social network, updating a
// what's new feed, etc.
}
args.setPromise(WinJS.UI.processAll());
}
};
app.oncheckpoint = function (args) {
// TODO: This application is about to be suspended. Save any state that needs to persist across suspensions here.
// You might use the WinJS.Application.sessionState object, which is automatically saved and restored across suspension.
// If you need to complete an asynchronous operation before your application is suspended, call args.setPromise().
};
app.start();
})();