JumpTask.ApplicationPath Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le chemin d'accès à l'application.
public:
property System::String ^ ApplicationPath { System::String ^ get(); void set(System::String ^ value); };
public string ApplicationPath { get; set; }
member this.ApplicationPath : string with get, set
Public Property ApplicationPath As String
Valeur de propriété
Chemin d'accès à l'application. La valeur par défaut est null
.
Exemples
L’exemple suivant montre comment déclarer un JumpTask balisage. L’ouverture JumpTask d’un fichier texte nommé readme.txt
dans l’application Bloc-notes.
<JumpTask Title="Read Me"
Description="Open readme.txt in Notepad."
ApplicationPath="C:\Windows\notepad.exe"
IconResourcePath="C:\Windows\System32\imageres.dll"
IconResourceIndex="14"
WorkingDirectory="C:\Users\Public\Documents"
Arguments="readme.txt"/>
L’exemple suivant montre comment configurer un JumpTask code. L’application JumpTask Calculatrice s’ouvre.
// Configure a new JumpTask.
JumpTask jumpTask1 = new JumpTask();
// Get the path to Calculator and set the JumpTask properties.
jumpTask1.ApplicationPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.SystemX86), "calc.exe");
jumpTask1.IconResourcePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.SystemX86), "calc.exe");
jumpTask1.Title = "Calculator";
jumpTask1.Description = "Open Calculator.";
jumpTask1.CustomCategory = "User Added Tasks";
Remarques
Si la ApplicationPath propriété n’est pas spécifiée, le chemin d’accès du processus en cours d’exécution est implicite. Une application peut contenir des tâches pour les exécutables autres que lui-même.