随着2015年11月18日的新更新.Windows app认证工具包是 检查预启动测试,我尝试使用此示例
https://msdn.microsoft.com/en-us/library/windows/apps/mt593297.aspx
但是,dint找到了WinJS的样本。我如何在WinJS应用程序中执行此操作?
答案 0 :(得分:0)
您应该检查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();
})();