我希望能够向 Windows 8 搜索魅力菜单(不是弹出菜单,菜单本身)添加一些文本(不是链接)。我目前正在向这样的菜单添加命令/链接(为这篇文章简化了):
WinJS.Application.onsettings = function(e) {
// inside of a loop...
e.detail.e.request.applicationCommands.append(
new Windows.UI.ApplicationSettings.SettingsCommand("defaults", theLabel, function () {
Windows.System.Launcher.launchUriAsync(new Windows.Foundation.Uri(theUrl));
})
);
};
这会产生我需要的命令/链接,但我想在其中添加一些文字......有什么想法吗?这可能吗?