I would like to drag one or more selected rows from SfDataGrid to Windows desktop? Is it possible?
I effectively gained control on DataGridRowControl throught its style:
<Style TargetType="sf:DataGridRowControl">
<Setter Property="sf:DataGridRowControl.CanDrag" Value="True"/>
</Style>
Anyway, I don't understand how to intercept the Drag-related events when dragging the row outside my app's window.
Is it possible to achieve this?