Key Map Dialog
BCGControlBar Pro (MFC)
BCGSuite (MFC)
BCGControlBar for .NET
The Key Map Dialog is a resizable dialog box that an application can use to show the mapping of keyboard commands. It consists of a list view control that displays the current key assignments by category and by accelerator table.
The Key Map Dialog class is mostly informative. It could be a good addition to the application help topic.
Sample code:
void CMainFrame::OnHelpKeyboardmap()
{
CBCGPKeyMapDlg dlg (this, TRUE /* Enable Print */);
dlg.DoModal ();
}