次の方法で共有


JumpTask.Description プロパティ

定義

ジャンプ リストのタスクのツールヒントに表示されるテキストを取得または設定します。

public:
 property System::String ^ Description { System::String ^ get(); void set(System::String ^ value); };
public string Description { get; set; }
member this.Description : string with get, set
Public Property Description As String

プロパティ値

String

タスクのツールヒントに表示されるテキスト。 既定値は、null です。

次の例は、in マークアップを宣言する方法を 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"/>

次の例は、in コードを構成する方法を JumpTask 示しています。 JumpTask電卓アプリケーションが開きます。

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

適用対象