如何建立多重選取清單框
本主題示範如何在多重選取清單框中顯示和存取目錄的內容。 在多重選取清單框中,用戶可以一次選取多個專案。
本主題中的 C++ 程式代碼範例可讓使用者檢視目前目錄中的檔案清單、從清單中選取一組檔案,並加以刪除。
您需要知道的事項
技術
必要條件
- C/C++
- Windows 使用者介面程序設計
指示
目錄清單應用程式必須執行下列清單框相關工作:
- 初始化清單框。
- 從清單框中擷取使用者的選取專案。
- 刪除選取的檔案之後,請從清單框中移除檔名。
在下列 C++ 程式代碼範例中,對話框程式會使用 DlgDirList 函式,將多重選取範圍清單框 (IDC_FILELIST) 初始化,以目前目錄中所有檔案的名稱填滿清單框。
當使用者選取一組檔案並選擇 [刪除] 按鈕時,對話框程式會傳送LB_GETSELCOUNT訊息、擷取選取的檔案數目,以及LB_GETSELITEMS訊息,以擷取選取清單框專案的陣列。 刪除檔案之後,對話框程式會藉由傳送 LB_DELETESTRING 訊息,從清單框中移除對應的專案。
#define BIGBUFF 8192
INT_PTR CALLBACK DlgDelFilesProc(HWND hDlg, UINT message,
UINT wParam, LONG lParam)
{
PTSTR pszCurDir;
PTSTR pszFileToDelete;
int cSelItems;
int cSelItemsInBuffer;
TCHAR achBuffer[MAX_PATH];
int aSelItems[BIGBUFF];
int i;
BOOL fResult;
HWND hListBox;
int iRet;
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 list of selected files.
pszFileToDelete = achBuffer;
hListBox = GetDlgItem(hDlg, IDC_FILELIST);
cSelItems = SendMessage(hListBox,
LB_GETSELCOUNT, 0, 0);
cSelItemsInBuffer = SendMessage(hListBox,
LB_GETSELITEMS, 512, (LPARAM) aSelItems);
if (cSelItems > cSelItemsInBuffer)
{
MessageBox(hDlg, L"Too many items selected.",
NULL, MB_OK);
}
else
{
// Make sure the user really wants to delete the files.
iRet = MessageBox(hDlg,
L"Are you sure you want to delete these files?",
L"Deleting Files", MB_YESNO | MB_ICONEXCLAMATION);
if (iRet == IDNO)
return TRUE;
// Go through the list backward because after deleting
// an item the indices change for every subsequent
// item. By going backward, the indices are never
// invalidated.
for (i = cSelItemsInBuffer - 1; i >= 0; i--)
{
SendMessage(hListBox, LB_GETTEXT,
aSelItems[i],
(LPARAM) pszFileToDelete);
fResult = DeleteFile(pszFileToDelete);
if (!fResult)
{
MessageBox(hDlg, L"Could not delete file.",
NULL, MB_OK);
}
else
{
SendMessage(hListBox, LB_DELETESTRING,
aSelItems[i], 0);
}
}
SendMessage(hListBox, LB_SETCARETINDEX, 0, 0);
}
return TRUE;
case IDCANCEL:
// Destroy the dialog box.
EndDialog(hDlg, TRUE);
return TRUE;
default:
return FALSE;
}
default:
return FALSE;
}
}
相關主題