mfc_Drag_Drop_1 - 8BitsCoding/RobotMentor GitHub Wiki
๋ํ์์์ Accept Files๋ฅผ True๋ก ๋ณ๊ฒฝ
๋ํ์์์ Drag and Drop์ด ๊ฐ๋ฅํ๊ฒ ๋๋ค.
ํด๋์ค๋ง๋ฒ์ฌ์ WM_DROPFILES๋ฅผ ์ถ๊ฐํ๋ค.
void CMFCApplication1Dlg::OnDropFiles(HDROP hDropInfo)
{
m_drop_list.ResetContent();
int count = DragQueryFile(hDropInfo, 0xFFFFFFFF/*-1*/, NULL, 0);
wchar_t temp_path[MAX_PATH];
for (int i = 0; i < count; i++) {
DragQueryFile(hDropInfo, i, temp_path, MAX_PATH);
m_drop_list.InsertString(i, temp_path);
}
CDialogEx::OnDropFiles(hDropInfo);
}