The following event that was in v10 no longer fires in v14. I am setting AllowDrop to true for the MapView.
WinMap.DragDrop += WinformsMap1_DragDrop;
private void WinformsMap1_DragDrop(object sender, DragEventArgs e)
{
// Add files to the layout based on their type
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop, false);
AddFiles(files);
}
Regards,
Damian