This question is locked. New answers and comments are not allowed.
Hi
How does the drag arrow work out where to start from. I am getting a gap between where I start dragging and where the drag arrow actually appears as shown in this Screen shot
I am generating the arrow using the following
How does the drag arrow work out where to start from. I am getting a gap between where I start dragging and where the drag arrow actually appears as shown in this Screen shot
I am generating the arrow using the following
private void OnDragQuery(object sender, DragDropQueryEventArgs e) { // draw the arrow if (e.Options.Status == DragStatus.DragQuery) { e.QueryResult = true; e.Handled = true; var arrowCue = RadDragAndDropManager.GenerateArrowCue(); arrowCue.Background = new SolidColorBrush(ColourFormat.GetColourFromHex("#FFCC0000")); arrowCue.BorderBrush = new SolidColorBrush(ColourFormat.GetColourFromHex("#FFCC0000")); e.Options.ArrowCue = arrowCue; } }