Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Registers callback methods with a command source.
delegate void CommandHandler(
UINT^ cmdID
);
Parameters
- cmdID
The command ID.
Remarks
This delegate registers callback methods with a command source. When you add a delegate to the command source object, the callback method becomes a handler for commands coming from the specified source.
For more information, see How to: Add Command Routing to the Windows Forms Control.
For more information on using Windows Forms, see Using a Windows Form User Control in MFC.
Example
The following is an example of how to use CommandHandler.
private ICommandSource m_CmdSrc;
public void Initialize (ICommandSource cmdSrc)
{
m_CmdSrc = cmdSrc;
// substitue ID of your command (from MFC project's resource.h) for 32771
m_CmdSrc.AddCommandHandler(32771, new CommandHandler(singleMenuHandler));
}
Requirements
Header: afxwinforms.h (defined in assembly atlmfc\lib\mfcmifc80.dll)