JumpTask.IconResourcePath 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置资源的路径,该资源包含要在跳转列表中显示的图标。
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
属性值
包含图标的资源的路径。 默认值为 null
。
示例
以下示例演示如何在标记中声明 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 。 打开 JumpTask Calculator 应用程序。
// 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";
注解
与 一起使用的 JumpTask 图标必须可用作本机资源。 如果 DLL 或可执行文件中有多个图标可用,则通过指示 属性中的 IconResourceIndex 偏移量来指定要使用的图标。
如果未指定图标资源,或者找不到指定的图标,则显示标准系统图标。 若要指定不显示任何图标,请将 属性 IconResourceIndex 设置为 -1。