JumpList.Apply 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在其当前状态下将 JumpList 发送到 Windows shell 中。
public:
void Apply();
[System.Security.SecurityCritical]
public void Apply ();
public void Apply ();
[<System.Security.SecurityCritical>]
member this.Apply : unit -> unit
member this.Apply : unit -> unit
Public Sub Apply ()
- 属性
例外
JumpList 未完全初始化。
示例
以下示例演示如何获取当前 JumpList 并清除集合的内容 JumpItems 。 Apply然后调用 方法以将JumpList更改应用到 Windows shell。 此示例是类概述中提供的更大示例的一 JumpList 部分。
private void ClearJumpList(object sender, RoutedEventArgs e)
{
JumpList jumpList1 = JumpList.GetJumpList(App.Current);
jumpList1.JumpItems.Clear();
jumpList1.Apply();
}
注解
方法 Apply 将 的内容 JumpList 发送到处于当前状态的 Windows shell。 完成此调用后,将 JumpItems 修改 属性以仅包含 Windows shell 成功添加到其任务栏跳转列表的那些项。 可以通过 和 JumpItemsRemovedByUser 事件的事件处理程序JumpItemsRejected访问已删除项的列表。