Freigeben über


JumpList.SetJumpList(Application, JumpList) Methode

Definition

Legt das einer Anwendung zugeordnete JumpList-Objekt fest.

public:
 static void SetJumpList(System::Windows::Application ^ application, System::Windows::Shell::JumpList ^ value);
public static void SetJumpList (System.Windows.Application application, System.Windows.Shell.JumpList value);
static member SetJumpList : System.Windows.Application * System.Windows.Shell.JumpList -> unit
Public Shared Sub SetJumpList (application As Application, value As JumpList)

Parameter

application
Application

Die dem JumpList-Objekt zugeordnete Anwendung.

value
JumpList

Das der Anwendung zuzuordnende JumpList-Objekt.

Beispiele

Das folgende Beispiel zeigt, wie Sie einen JumpList Code erstellen. Die statische SetJumpList Methode wird aufgerufen, um die JumpList aktuelle Anwendung zuzuordnen. Die JumpList Wird automatisch auf die Windows Shell angewendet, wenn sie festgelegt ist. Dieses Beispiel ist Teil eines größeren Beispiels, das in der JumpList Klassenübersicht verfügbar ist.

private void SetNewJumpList(object sender, RoutedEventArgs e)
{
    //Configure a new JumpTask
    JumpTask jumpTask1 = new JumpTask();
    // Get the path to WordPad and set the JumpTask properties.
    jumpTask1.ApplicationPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.System), "write.exe");
    jumpTask1.IconResourcePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.System), "write.exe");
    jumpTask1.Title = "WordPad";
    jumpTask1.Description = "Open WordPad.";
    jumpTask1.CustomCategory = "Jump List 2";
    // Create and set the new JumpList.
    JumpList jumpList2 = new JumpList();
    jumpList2.JumpItems.Add(jumpTask1);
    JumpList.SetJumpList(App.Current, jumpList2);
}

Hinweise

Sie können mehrere JumpList Objekte erstellen. Es kann jedoch nur jeweils JumpList ein Einziger mit einem verknüpft Applicationwerden. Rufen Sie die SetJumpList Methode auf, um die JumpList aktuell zugeordnete ApplicationMethode festzulegen.

Gilt für