15,980
社区成员




BOOL CXXXDlg::OnCommand(WPARAM wParam, LPARAM lParam)
{
// TODO: Add your specialized code here and/or call the base class
if((BN_CLICKED == HIWORD(wParam)))
{
if(IDC_CLOSE_RIGHT == LOWORD(wParam))
{
AfxMessageBox(_T("MessageBox"));
}
}
return CDialog::OnCommand(wParam, lParam);
}