문제

I have a dialog box with some CListCtrl. I want that when I click on one of them, receive killfocus or setfocus message.

How I can get it?

도움이 되었습니까?

해결책

The CListCtrl class wraps the Win32 ListView control. That control communicates with its parent (your dialog) via WM_NOTIFY messages.

So you can process WM_NOTIFY messages from your list control in your dialog class. Use the Properties window to create an OnChildNotify handler function and write a switch statement that handles the notification message(s) of interest.

The possible notification messages are listed here in the Windows SDK documentation.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top