如何在对话框中实现文件拖放功能
1个回答
推荐于2016-02-10
展开全部
在对话框上添加一个Picture Control,然后把Accept Files属性修改成True。如果是想托图片的话需要把Type改成Bitmap。
在头文件里加入:afx_msg void OnDropFiles(HDROP hDropInfo);
在cpp文件里加入:ON_WM_DROPFILES()
在OnInitDialog()的最后加入:DragAcceptFiles(TRUE);
在cpp文件里添加:void CTestDragDlg::OnDropFiles(HDROP hDropInfo){
int nFileCount = DragQueryFile(hDropInfo, -1, NULL, 0);
TCHAR *strFilePath;
int dwSize;
if (nFileCount==1)
{
dwSize = DragQueryFile(hDropInfo, 0, NULL, 0);
strFilePath = new TCHAR[dwSize+1];
if (strFilePath)
{
DragQueryFile(hDropInfo, 0, strFilePath, dwSize+1);
//Retrieves the names of dropped files that result from a successful drag-and-drop operation.
//Do sth to prove succeed
delete []strFilePath;
}
}
CDialog::OnDropFiles(hDropInfo);
DragFinish(hDropInfo);
Invalidate();
}
到此为止已经结束。为了证明拖拽文件ok可以做一个小测试。
在对话框中加入一个edit box,
然后在头文件中加入:CString m_StrPath;
在cpp文件的DoDataExchange(CDataExchange* pDX)函数中加入
DDX_Text(pDX, IDC_EDIT0, m_StrPath);
在DragQueryFile后添加:
m_StrPath.Format("%s",strFilePath);
UpdateData(FALSE);
然后测试就会发现只要拖拽一个文件就会在edit box里出现此文件的全路径。
在头文件里加入:afx_msg void OnDropFiles(HDROP hDropInfo);
在cpp文件里加入:ON_WM_DROPFILES()
在OnInitDialog()的最后加入:DragAcceptFiles(TRUE);
在cpp文件里添加:void CTestDragDlg::OnDropFiles(HDROP hDropInfo){
int nFileCount = DragQueryFile(hDropInfo, -1, NULL, 0);
TCHAR *strFilePath;
int dwSize;
if (nFileCount==1)
{
dwSize = DragQueryFile(hDropInfo, 0, NULL, 0);
strFilePath = new TCHAR[dwSize+1];
if (strFilePath)
{
DragQueryFile(hDropInfo, 0, strFilePath, dwSize+1);
//Retrieves the names of dropped files that result from a successful drag-and-drop operation.
//Do sth to prove succeed
delete []strFilePath;
}
}
CDialog::OnDropFiles(hDropInfo);
DragFinish(hDropInfo);
Invalidate();
}
到此为止已经结束。为了证明拖拽文件ok可以做一个小测试。
在对话框中加入一个edit box,
然后在头文件中加入:CString m_StrPath;
在cpp文件的DoDataExchange(CDataExchange* pDX)函数中加入
DDX_Text(pDX, IDC_EDIT0, m_StrPath);
在DragQueryFile后添加:
m_StrPath.Format("%s",strFilePath);
UpdateData(FALSE);
然后测试就会发现只要拖拽一个文件就会在edit box里出现此文件的全路径。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询