단일 선택 ListBox에서 디렉터리 목록을 만드는 방법
이 항목에서는 단일 선택 목록 상자를 사용하여 디렉터리의 콘텐츠를 표시하고 액세스하는 방법을 보여 줍니다. 단일 선택 목록 상자는 기본 목록 상자 형식입니다. 사용자는 단일 선택 목록 상자에서 한 번에 하나의 항목만 선택할 수 있습니다.
이 항목의 C++ 코드 예를 사용하면 사용자가 현재 디렉터리의 파일 목록을 보고 목록에서 파일을 선택한 다음 삭제할 수 있습니다.
알아야 하는 작업
기술
필수 구성 요소
- C/C++
- Windows 사용자 인터페이스 프로그래밍
지침
디렉터리 목록 애플리케이션은 다음 목록 상자 관련 작업을 수행해야 합니다.
- 목록 상자를 초기화합니다.
- 목록 상자에서 사용자의 선택을 검색합니다.
- 선택한 파일이 삭제된 후 목록 상자에서 파일 이름을 제거합니다.
다음 C++ 코드 예에서 대화 상자 프로시저는 DlgDirList 함수를 사용하여 단일 선택 목록 상자(IDC_FILELIST)를 초기화하여 현재 디렉터리에 있는 모든 파일의 이름으로 목록 상자를 채웁니다. 사용자가 파일을 선택하고 삭제 단추를 선택하면 DlgDirSelectEx 함수가 선택한 파일의 이름을 검색합니다. 이 코드는 DeleteFile 함수를 사용하여 파일을 삭제하고 LB_DELETESTRING 메시지를 전송하여 디렉터리 목록 상자를 업데이트합니다.
INT_PTR CALLBACK DlgDelFileProc(HWND hDlg, UINT message,
UINT wParam, LONG lParam)
{
PTSTR pszCurDir;
PTSTR pszFileToDelete;
int iLBItem;
int cStringsRemaining;
int iRet;
TCHAR achBuffer[MAX_PATH];
TCHAR achTemp[MAX_PATH];
BOOL fResult;
switch (message)
{
case WM_INITDIALOG:
// Initialize the list box by filling it with files from
// the current directory.
pszCurDir = achBuffer;
GetCurrentDirectory(MAX_PATH, pszCurDir);
DlgDirList(hDlg, pszCurDir, IDC_FILELIST, IDS_PATHTOFILL, 0);
SetFocus(GetDlgItem(hDlg, IDC_FILELIST));
return FALSE;
case WM_COMMAND:
switch (LOWORD(wParam))
{
case IDOK:
// When the user presses the DEL (IDOK) button,
// first retrieve the selected file.
pszFileToDelete = achBuffer;
DlgDirSelectEx(hDlg, pszFileToDelete, MAX_PATH,
IDC_FILELIST);
// Make sure the user really wants to delete the file.
achTemp[MAX_PATH];
StringCbPrintf (achTemp, ARRAYSIZE(achTemp),
TEXT("Are you sure you want to delete %s?"),
pszFileToDelete);
iRet = MessageBox(hDlg, achTemp, L"Deleting Files",
MB_YESNO | MB_ICONEXCLAMATION);
if (iRet == IDNO)
return TRUE;;
// Delete the file.
fResult = DeleteFile(pszFileToDelete);
if (!fResult)
{
MessageBox(hDlg, L"Could not delete file.",
NULL, MB_OK);
}
else // Remove the filename from the list box.
{
// Get the selected item.
iLBItem = SendMessage(GetDlgItem(hDlg, IDC_FILELIST),
LB_GETCURSEL, 0, 0);
// Delete the selected item.
cStringsRemaining = SendMessage(GetDlgItem(hDlg, IDC_FILELIST),
LB_DELETESTRING, iLBItem, 0);
// If this is not the last item, set the selection to
// the item immediately following the one just deleted.
// Otherwise, set the selection to the last item.
if (cStringsRemaining > iLBItem)
{
SendMessage(GetDlgItem(hDlg, IDC_FILELIST),
LB_SETCURSEL, iLBItem, 0);
}
else
{
SendMessage(GetDlgItem(hDlg, IDC_FILELIST),
LB_SETCURSEL, cStringsRemaining, 0);
}
}
return TRUE;
case IDCANCEL:
// Destroy the dialog box.
EndDialog(hDlg, TRUE);
return TRUE;
default:
return FALSE;
}
default:
return FALSE;
}
}
관련 항목