JumpTask.IconResourcePath 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 à une ressource qui contient l'icône à afficher dans la Liste de raccourcis.
public:
property System::String ^ IconResourcePath { System::String ^ get(); void set(System::String ^ value); };
public string IconResourcePath { get; set; }
member this.IconResourcePath : string with get, set
Public Property IconResourcePath As String
Valeur de propriété
Chemin d'accès à une ressource qui contient l'icône. 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
Une icône utilisée avec un JumpTask doit être disponible en tant que ressource native. Si plusieurs icônes sont disponibles dans un fichier DLL ou exécutable, vous spécifiez celle à utiliser en indiquant un décalage dans la IconResourceIndex propriété.
Si aucune ressource d’icône n’est spécifiée ou si l’icône spécifiée est introuvable, l’icône système standard s’affiche. Pour spécifier qu’aucune icône n’est affichée, définissez la IconResourceIndex propriété sur -1.