Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

JumpListItemTask.Path Property

Gets or sets the full path to a destination folder or a file that is launched by the JumpListItemTask.

Namespace: DevExpress.Utils.Taskbar

Assembly: DevExpress.Utils.v24.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

#Declaration

[DefaultValue("")]
[DXCategory("Behavior")]
public string Path { get; set; }

#Property Value

Type Default Description
String String.Empty

The full path to a destination folder or a file that is launched by the JumpListItemTask.

#Remarks

The Path property allows you to set the full path to a file that is launched when an end-user clicks the current JumpListItemTask in the JumpList. You can set a path to a command file or to a document that can be opened. It is also possible to specify a path to a folder to be opened. You can also specify the command file arguments with the JumpListItemTask.Arguments property. To specify a custom working directory for the launched process, use the JumpListItemTask.WorkingDirectory property.

To perform custom actions on task clicks, you can handle the JumpListItemTask.Click event. This event fires even if the Path property is specified.

See Also