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.Description Property

Gets or sets the task description shown in the tooltip.

Namespace: DevExpress.Utils.Taskbar

Assembly: DevExpress.Utils.v24.2.dll

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

#Declaration

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

#Property Value

Type Default Description
String String.Empty

A String value that specifies the task description shown in the tooltip.

#Remarks

Use the Description property to provide the text for the tooltip shown when the mouse pointer is positioned over the current task in the jump list. You can specify the tooltip text using the Jump List Editor as shown below.

JumpListItemTask_Description

Or provide a description in code.

jumpListItemTask1.Description = "This is a description";

In the figure below, you can see the result.

JumpListItemTask_DescriptionShown

See Also