一、主对话框接收拖的文件
在基于对话框的程序中,默认是没有这个消息的。
1、按下Ctrl+W,弹出类向导对话框,选择Class Info标签;
2、在Message fileter下拉列表中选择Window,然后再点击Message Maps标签;
3、这时就出现WM_DROPFILES消息了,添加该消息的响应函数。
4、对话框的属性,Accept Files 设置为 True ;
[cpp] view plain copy print ?
- void CDragDlg::OnDropFiles(HDROP hDropInfo)
- {
- // TODO: Add your message handler code here and/or call default
-
- CDialog::OnDropFiles(hDropInfo);
- }
4、另外,要让对话框能够接受文件拖拽,还需要设置对话框属性。
在对话框上点击右键,选择Properties->Extended Styles,点选Accept files选项即可。
5、要获得当前拖拽的文件的完整文件名(含路径),只需要一个函数:
- UINT DragQueryFile( HDROP hDrop,
- UINT iFile,
- LPTSTR lpszFile,
- UINT cch
- );
6、参数解释:
hDrop: HDROP标识符,即响应函数中的hDropInfo参数
iFile: 待查询的文件索引号,从0开始。可以同时拖拽多个文件,因此就需要一个索引号来进行区分。如果该参数为0xFFFFFFFF,则该函数返回拖拽的文件的个数
lpszFile: 用于存放文件名的缓冲区首地址
cch: 缓冲区长度
返回值:文件名长度
7、查询完成后需要释放系统分配内存,使用下面这个函数:
- VOID DragFinish( HDROP hDrop
- );
8、下面是一个完整的代码示例,将文件拖拽到对话框上后会弹出消息框显示完整文件名:
- void CDragDlg::OnDropFiles(HDROP hDropInfo)
- {
- // TODO: Add your message handler code here and/or call default
- UINT count;
- char filePath[200];
- count = DragQueryFile(hDropInfo, 0xFFFFFFFF, NULL, 0); //系统的API函数
- if(count)
- {
- for(UINT i=0; i<count; i++)
- {
- int pathLen = DragQueryFile(hDropInfo, i, filePath, sizeof(filePath)); //API函数
- AfxMessageBox(filePath);
- }
- }
- DragFinish(hDropInfo); //API函数
- CDialog::OnDropFiles(hDropInfo);
- }
二、Clistctrl 实现拖动文件显示文件或文件夹路径
1、添加 Clistctrl 控件,选择 Report 格式,Accept Files 设置为 True
2、 自定义一个CClistctrl 类 的子类 CMyClistctrl
BEGIN_MESSAGE_MAP(CMyListCtrl, CListCtrl)
ON_WM_DROPFILES()
END_MESSAGE_MAP()
- class CMyListCtrl : public CListCtrl
- {
- DECLARE_DYNAMIC(CMyListCtrl)
-
- public:
- CMyListCtrl();
- virtual ~CMyListCtrl();
-
- protected:
- DECLARE_MESSAGE_MAP()
- public:
- afx_msg void OnDropFiles(HDROP hDropInfo);
- };
- void CMyListCtrl::OnDropFiles(HDROP hDropInfo)
- {
- int DropCount = DragQueryFile(hDropInfo,-1,NULL,0);
- for (int i = 0;i < DropCount;i++)
- {
- WCHAR pName[255] = {0};
- ZeroMemory(pName,255);
-
- DragQueryFile(hDropInfo,i,pName,255);
-
- InsertItem(i,pName);
- }
- CListCtrl::OnDropFiles(hDropInfo);
- }
三、CEdit 实现拖动文件显示文件或文件夹路径
1、添加 CEdit 控件,Accept Files 设置为 True
2、 自定义一个CEdit 类 的子类 CMyEdit
MyEdit.h
//////////////////////////////////////////////////////////////////////////////
#pragma once
// CMyEdit
class CMyEdit : public CEdit
{
DECLARE_DYNAMIC(CMyEdit)
public:
CMyEdit();
virtual ~CMyEdit();
protected:
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnDropFiles(HDROP hDropInfo);
};
MyEdit.cpp
//////////////////////////////////////////////////////////////////////////////////
// MyEdit.cpp : 实现文件
//
#include "stdafx.h"
#include "MyEdit.h"
// CMyEdit
IMPLEMENT_DYNAMIC(CMyEdit, CEdit)
CMyEdit::CMyEdit()
{
}
CMyEdit::~CMyEdit()
{
}
BEGIN_MESSAGE_MAP(CMyEdit, CEdit)
ON_WM_DROPFILES()
END_MESSAGE_MAP()
// CMyEdit 消息处理程序
void CMyEdit::OnDropFiles(HDROP hDropInfo)
{
// TODO: 在此添加消息处理程序代码和/或调用默认值
int DropCount = DragQueryFile(hDropInfo,-1,NULL,0);
for (int i = 0;i < DropCount;i++)
{
WCHAR pName[255] = {0};
ZeroMemory(pName,255);
DragQueryFile(hDropInfo,i,pName,255);
SetWindowText(pName);
}
CEdit::OnDropFiles(hDropInfo);
}
参考:
http://blog.csdn.net/shen_001/article/details/14001001