您的位置:首页 > 其它

unexpected end of file found

2009-08-25 15:26 351 查看
#include <afxwin.h>
#define IDB_BUTTON 100
class Cbutton3App:public CWinApp
{
public:
virtual BOOL InitInstance();
};
Cbutton3App button3App;
class Cbutton3Window:public CFrameWnd
{
CButton* button;
public:
Cbutton3Window();
afx_msg void HandleButton();
afx_msg void OnSize(UINT ,int ,int );
DECLARE_MESSAGE_MAP()
};
void Cbutton3Window::HandleButton()
{
MessageBeep(-1);
}
void Cbutton3Window::OnSize(UINT nType,int cx,int cy)
{
CRect r;
GetClientRect(&r);
r.InflateRect(-20,-20);
button->MoveWindow(r);
}
BEGIN_MESSAGE_MAP(Cbutton3Window,CFrameWnd)
ON_BN_CLICKED(IDB_BUTTON,HandleButton)
ON_WM_SIZE()
END_MESSAGE_MAP()
BOOL Cbutton3App::InitInstance()
{
m_pMainWnd=new Cbutton3Window();
m_pMainWnd->ShowWindow(m_nCmdShow);
m_pMainWnd->UpdateWindow();
return true;
}
class Cbutton3Window::Cbutton3Window()
{
CRect r;
Create(NULL,"Cbutton test",WS_OVERLAPPEDWINDOW,CRect(0,0,200,200);
GetClientRect(&r);
r.InflateRect(-20,-20);
button=new CButton();
button->Create("Push me",WS_CHILD|WS_VISIBLE|BS_PUSHBUTTON,r,this,IDB_BUTTON);

}
编译后提示unexpected end of file found
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐