JumpTask.ApplicationPath Property
.NET Framework 4.5
Gets or sets the path to the application.
Namespace: System.Windows.Shell
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: Not mapped to an xmlns.
The following example shows how to declare a JumpTask in markup. The JumpTask opens a text file named readme.txt in the Notepad application.
<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"/>
The following example shows how to configure a JumpTask in code. The JumpTask opens the Calculator application.
// 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";
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.