Processes this message to be notified when the user selects an item in the ImageList Control.
idCtlr = (L_INT)LOWORD(wParam) identifier of the control.
wNotifyCode = HIWORD(wParam) will be L_ILN_ITEMSEL.
Pointer to an LILITEMSEL structure containing information about the selected item.
None.
This message is sent to the ImageList Control's window by itself when an Item is selected by the user.
You can use this message instead of the L_ILN_ITEMSEL command notification when you are sub-classing the ImageList Control.
The lIndex member of the LILITEMSEL structure pointed to by lParam will contain the 0-based index of the selected item.
This sample code comes from an example that sub-classes the LEAD ImageList Control Window.
This function processes the L_ILM_ITEMSELECTED message to be notified when an item is selected.
LRESULT OnItemSel(HWND /*hWnd*/, UINT /*msg*/, WPARAM /*wParam*/, LPARAM /*lParam*/)
{
/*L_TCHAR szBuf[300];
pLILITEMSEL pItem=NULL;
pItem = (pLILITEMSEL)lParam;
if(pItem)
{
wsprintf(szBuf, TEXT("Item %ld was selected\n"), pItem->lIndex);
MessageBox(hWnd, szBuf, TEXT("Selected"), MB_OK);
this->Fire_ItemSelected(pItem->lIndex);
}*/
return 0;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document