Skip to main content

TaskbarAssistant.UseSingleJumpListForAllAppInstances Property

Gets or sets whether a single instance of the Jump List is used for all instances of the current application.

Namespace: DevExpress.Utils.Taskbar

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

[DefaultValue(true)]
[DXCategory("Behavior")]
public bool UseSingleJumpListForAllAppInstances { get; set; }

Property Value

Type Default Description
Boolean true

true, if a single instance of the Jump List is used for all instances of the current application; false if every application instance uses its own Jump List instance.

Remarks

If multiple instances of an application are currently running, and if the UseSingleJumpListForAllAppInstances property is set to true, a click on a task in a Jump List invokes the JumpListItemTask.Click event in the currently active application (even if the Jump List has been displayed for another application instance). If the UseSingleJumpListForAllAppInstances property is set to false, a click on a task invokes the JumpListItemTask.Click event in the application that corresponds to the opened Jump List.

See Also