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

DataViewBase.ShowTargetInfoInDragDropHint Property

Gets or sets whether the drag-and-drop hint shows additional information about a drop target. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public bool ShowTargetInfoInDragDropHint { get; set; }

#Property Value

Type Description
Boolean

true, to show additional information about a drop target in the drag-and-drop hint; otherwise, false.

#Remarks

The drag-and-drop hint contains information about a drag source only by default. You can add additional information, for example, in the following image, a drag-and-drop hint shows information about an action that takes place and a drop target source:

DragDropIndicationTargetInfoInHint

Set the ShowTargetInfoInDragDropHint property to true to show a drag-and-drop hint like in the image above:

<dxg:TableView ShowTargetInfoInDragDropHint="True" />
See Also