step1,从CEdit继承,自定义一个Edit控件。在头文件添加如下的消息响应函数:
afx_msg
void
OnDropFiles(HDROP hDropInfo);
step2,在cpp文件中的消息映射中添加:
ON_WM_DROPFILES()
step3,在cpp文件中添加OnDropFiles函数的实现,对拖拽的文件进行处理。下面是完整的代码:
*.h
#pragma
once
#include
"afxwin.h"
class
lxEdit :
public CEdit