JumpList.JumpItems 属性

定义

获取在跳转列表中显示的 JumpItem 对象的集合。

public:
 property System::Collections::Generic::List<System::Windows::Shell::JumpItem ^> ^ JumpItems { System::Collections::Generic::List<System::Windows::Shell::JumpItem ^> ^ get(); };
public System.Collections.Generic.List<System.Windows.Shell.JumpItem> JumpItems { get; }
member this.JumpItems : System.Collections.Generic.List<System.Windows.Shell.JumpItem>
Public ReadOnly Property JumpItems As List(Of JumpItem)

属性值

在跳转列表中显示的 JumpItem 对象的集合。 默认值为空集合。

示例

以下示例演示如何获取当前 JumpList 并清除集合的内容 JumpItemsApply然后调用 方法以将JumpList更改应用到 Windows shell。 此示例是类概述中提供的更大示例的一 JumpList 部分。

private void ClearJumpList(object sender, RoutedEventArgs e)
{
    JumpList jumpList1 = JumpList.GetJumpList(App.Current);
    jumpList1.JumpItems.Clear();
    jumpList1.Apply();
}

注解

跳转列表可以包含两种类型的项,即 JumpTaskJumpPath。 是 JumpTask 程序的链接,是 JumpPath 指向文件的链接。

JumpList创建 时,JumpItems集合为空。 可以将任何 JumpTaskJumpPath 对象添加到集合。 集合将仅包含程序添加的项。 JumpList通过成功调用 EndInitApply 方法将 传递到 Windows shell 后,JumpItems集合将仅包含已成功添加到任务栏跳转列表的项。 未成功添加的项将从 JumpItems 集合中删除。 可以通过 和 JumpItemsRemovedByUser 事件的事件处理程序JumpItemsRejected访问已删除项的列表。

适用于