JumpList.Apply メソッド

定義

現在の状態の JumpList を Windows シェルに送信します。

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その後、 メソッドが呼び出され、JumpListWindows シェルに変更が適用されます。 この例は、クラスの概要で使用できるより大きな例の JumpList 一部です。

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

注釈

メソッドは Apply 、 の JumpList 内容を現在の状態の Windows シェルに送信します。 この呼び出しが完了すると、 JumpItems Windows シェルがタスク バーのジャンプ リストに正常に追加した項目のみを含むプロパティが変更されます。 および イベントのイベント ハンドラーを使用して、削除された項目の一覧にJumpItemsRejectedJumpItemsRemovedByUserアクセスできます。

適用対象