This question is locked. New answers and comments are not allowed.
Hi.
I'am implementing drag and drop functionality between a RadListbox and a RadTileView, using RadDragAndDropManager.
I have added a ArrowCue like this:
but the arrow cue doesn't show up.
and another problem the arrow in the dragged item is pointing the wrong way as seen in the attached image.
any help would be appreciated.
I'am implementing drag and drop functionality between a RadListbox and a RadTileView, using RadDragAndDropManager.
I have added a ArrowCue like this:
private void OnListBoxDragQuery(object sender, DragDropQueryEventArgs e)
{
RadListBox listBox = sender as RadListBox;
if (listBox != null)
{
IList selectedItems = listBox.SelectedItems.Cast<
object
>().ToList();
e.Options.Payload = selectedItems;
}
e.Options.ArrowCue = RadDragAndDropManager.GenerateArrowCue();
e.QueryResult = true;
e.Handled = true;
}
and another problem the arrow in the dragged item is pointing the wrong way as seen in the attached image.
any help would be appreciated.