拖曳文件:
文件拖曳会触发OnDropFiles(HDROP hDropInfo)消息:
int count = DragQueryFile(hDropInfo,0xFFFFFFFF,NULL,_MAX_PATH)得到拖曳的文件总数
DragQueryFile(hDropInfo,i,pszFilePath,_MAX_PATH)得到所拖曳的第i个文件名存入pszFilePath中
DragFinish(hDropInfo)