JumpList.SetJumpList(Application, JumpList) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Define o objeto JumpList associado a um aplicativo.
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)
Parâmetros
- application
- Application
O aplicativo associado ao JumpList.
Exemplos
O exemplo a seguir mostra como criar um JumpList código no código. O método estático SetJumpList é chamado para associar o JumpList aplicativo atual. O JumpList shell de Windows é aplicado automaticamente quando ele é definido. Este exemplo faz parte de um exemplo maior disponível na visão geral da 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);
}
Comentários
Você pode criar vários JumpList objetos. No entanto, apenas um JumpList de cada vez pode ser associado a um Application. Chame o SetJumpList método para definir o JumpList atualmente associado a um Application.