CWnd::OnMenuSelect
Visual Studio 2012
If the CWnd object is associated with a menu, OnMenuSelect is called by the framework when the user selects a menu item.
afx_msg void OnMenuSelect( UINT nItemID, UINT nFlags, HMENU hSysMenu );
If nFlags contains 0xFFFF and hSysMenu contains 0, Windows has closed the menu because the user pressed the ESC key or clicked outside the menu.
Note
|
|---|
|
This member function is called by the framework to allow your application to handle a Windows message. The parameters passed to your function reflect the parameters received by the framework when the message was received. If you call the base-class implementation of this function, that implementation will use the parameters originally passed with the message and not the parameters you supply to the function. |
Note