windowsforms-devexpress-dot-utils-dot-taskbar-dot-taskbarassistant-309973e4.md
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.v25.2.dll
NuGet Packages : DevExpress.Utils, DevExpress.Wpf.Core
[DefaultValue(true)]
[DXCategory("Behavior")]
public bool UseSingleJumpListForAllAppInstances { get; set; }
<DefaultValue(True)>
<DXCategory("Behavior")>
Public Property UseSingleJumpListForAllAppInstances As Boolean
| 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.
|
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