JumpTask.IconResourceIndex 属性

定义

获取或设置嵌入在资源中的图标的索引,索引从零开始。

public:
 property int IconResourceIndex { int get(); void set(int value); };
public int IconResourceIndex { get; set; }
member this.IconResourceIndex : int with get, set
Public Property IconResourceIndex As Integer

属性值

图标的从零开始的索引;如果未使用图标,则为 -1。 默认值为 0。

示例

以下示例演示如何在标记中声明 JumpTask 。 在 JumpTask 记事本应用程序中打开名为 readme.txt 的文本文件。

<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"/>

注解

与 一起使用的 JumpTask 图标必须作为本机资源提供。 如果 DLL 或可执行文件中有多个图标,则通过指示 属性中的 IconResourceIndex 偏移量来指定要使用的图标。

如果未指定图标资源,或者找不到指定的图标,则显示标准系统图标。 若要指定不显示任何图标,请将 属性设置为 IconResourceIndex -1。

适用于

另请参阅