如何在 Cortana 列表中显示超过 10 个磁贴
How to show more then 10 tiles in Cortana list
如何在 VoiceCommandContentTile 中显示超过 10 个图块?
我在想我是否可以创建一个图块,如果我总共有 20 个图块,LaunchArgument 可以打开列表的第二页,如 11-20。
知道怎么做吗?
if (selectedRes.SelectedItem.AppLaunchArgument == "more")
{
await CortanaList();
}
发现并不难。
1. 只加载 4 或 9 个图块
2. List item be more tiles 按钮
3.再次捕获AppLaunchArgument和return方法
如何在 VoiceCommandContentTile 中显示超过 10 个图块? 我在想我是否可以创建一个图块,如果我总共有 20 个图块,LaunchArgument 可以打开列表的第二页,如 11-20。 知道怎么做吗?
if (selectedRes.SelectedItem.AppLaunchArgument == "more")
{
await CortanaList();
}
发现并不难。 1. 只加载 4 或 9 个图块 2. List item be more tiles 按钮 3.再次捕获AppLaunchArgument和return方法