I have already implemented drag and drop in the way described here, so my code looks like
string[] paths = ...;
DragDrop.DoDragDrop(this, new DataObject(DataFormats.FileDrop, paths),
DragDropEffects.Copy);
But this implementation works only for explorer. What should I change to allow drop to Windows Media Player?