I've implemented Drag & Drop into a RadGridView. The DataObject I'm dropping is a string.
I need to detect whether the string is dropped into a Cell (in which case it will add the string to the cell value) or elsewhere on the RadGridView (where a new row will be created).
private void OnDropAttributes(object sender, Telerik.Windows.DragDrop.DragEventArgs args)
{
DataObject data = (args.Data as DataObject);
...?
I need to detect whether the string is dropped into a Cell (in which case it will add the string to the cell value) or elsewhere on the RadGridView (where a new row will be created).
private void OnDropAttributes(object sender, Telerik.Windows.DragDrop.DragEventArgs args)
{
DataObject data = (args.Data as DataObject);
...?