JumpList.SetJumpList(Application, JumpList) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Imposta l'oggetto JumpList associato a un'applicazione.
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)
Parametri
- application
- Application
Applicazione associata all'oggetto JumpList.
Esempio
Nell'esempio seguente viene illustrato come creare un JumpList oggetto nel codice. Il metodo statico SetJumpList viene chiamato per associare l'oggetto JumpList all'applicazione corrente. L'oggetto JumpList viene applicato automaticamente alla shell Windows quando è impostato. Questo esempio fa parte di un esempio più ampio disponibile nella panoramica della JumpList classe.
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);
}
Commenti
È possibile creare più JumpList oggetti. Tuttavia, solo uno JumpList alla volta può essere associato a un oggetto Application. Chiamare il SetJumpList metodo per impostare l'oggetto JumpList attualmente associato a un oggetto Application.