//创建一个BUTTON对象
CButton m_Bt;
//重建map
m_Bt.DetoryWindow();
//在.h文件定义一个按键ID
#define IDC_BUTTON1 10001
//开始创建(按键名字Caption、按键属性、按键大小位置、按键ID)
m_Bt.Create("Button1",WS_CHILD | WS_TABSTOP | WS_VISIBLE,IDC_BUTTON1);
//在.h文件声明消息函数
afx_msg void OnBnClickedButton1();
//定义消息函数
ON_BN_CLICKED((IDC_BUTTON1, &类名::OnBnClickedButton1));
//执行函数
void 类名::OnBnClikedButton1()
{
//执行的内容
}