JumpTask.IconResourceIndex 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定內嵌於資源中之圖示的索引 (以零為起始)。
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。