共用方式為


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

屬性值

Int32

圖示之以零起始的索引,如果沒有使用圖示,則為 -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。

適用於

另請參閱