New to Telerik UI for WPFStart a free 30-day trial

Set Cursor to Arrow while Dragging

Updated on Sep 24, 2025

The cursor displayed on dragging with DragDropManager is derived from the DragDropEffects set in DragInitialize event. However, you are free to override it and define it based on your specific requirements. For the purpose you may use the GiveFeedback event.

An example for such an implementation is illustrated below:

C#
	//Subscribing to the GiveFeedback event
	DragDropManager.AddGiveFeedbackHandler(SampleListBox, OnGiveFeedBack);
	//Handling the GiveFeedback event
	private void OnGiveFeedBack(object sender, Telerik.Windows.DragDrop.GiveFeedbackEventArgs args)
	{
	      args.SetCursor(Cursors.Arrow);
	      args.Handled = true;
	}
Not finding the help you need?
Contact Support