Valeri,
Using new drag-drop manager in example that you have attached, how can i create DragCue in a way that it would be right under mouse cursor?
When i'm creating drag cue using
CreateVisualCue, it always appears at the top/left corner of the dragged item, instead of cursor location;
public override FrameworkElement CreateVisualCue(ListBoxDragDropState state)
{
ContentControl element = new ContentControl();
element.Content = state.DraggedItems.FirstOrDefault();
return element;
}