将文本添加到Windows 8搜索超级按钮菜单

时间:2014-01-03 20:10:18

标签: microsoft-metro winjs charms-bar

我希望能够在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));
        })
    );
};

这会产生我需要的命令/链接,但我想在那里刊登一些文字......任何想法?这可能吗?

0 个答案:

没有答案