如何将跳转列表添加到 UWP Windows 10 应用程序 – 用 JavaScript 编写

How to add a jumplist to a UWP Windows 10 app – written in JavaScript

我在 JavaScript 中写了 Windows 10 个应用程序并且知道,有一些限制。如果我查看 documentation for jumplists,Microsoft 只是写 »有关创建或访问此对象的信息,请参阅备注。« JavaScript 并且仅提供 C# 的示例。

那么如何将跳转列表添加到我的 UWP Windows 10 应用程序以及如何添加和删除列表项?

它与 c# 代码非常相似。

你可以在这里找到一个例子: https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/JumpList/js/js

基本代码是:

var Uri = Windows.Foundation.Uri;
var StartScreen = Windows.UI.StartScreen;
var JumpList = StartScreen.JumpList;
var JumpListItem = StartScreen.JumpListItem;

var item = JumpListItem.createWithArguments("key", "caption");
item.description = "Description";
item.groupName = GroupName.value;
item.logo = new Uri("ms-appx:///images/your-images.png");
jumpList.items.append(item);

jumpList.saveAsync();