button.cpp
上传用户:hshkfsl
上传日期:2014-01-04
资源大小:1910k
文件大小:1k
- // button.cpp : 实现文件
- //
- #include "stdafx.h"
- #include "系统优化.h"
- #include "button.h"
- // button 对话框
- IMPLEMENT_DYNCREATE(button, CDHtmlDialog)
- button::button(CWnd* pParent /*=NULL*/)
- : CDHtmlDialog(button::IDD, button::IDH, pParent)
- {
- }
- button::~button()
- {
- }
- void button::DoDataExchange(CDataExchange* pDX)
- {
- CDHtmlDialog::DoDataExchange(pDX);
- }
- BOOL button::OnInitDialog()
- {
- CDHtmlDialog::OnInitDialog();
- return TRUE; // 除非将焦点设置到控件,否则返回 TRUE
- }
- BEGIN_MESSAGE_MAP(button, CDHtmlDialog)
- END_MESSAGE_MAP()
- BEGIN_DHTML_EVENT_MAP(button)
- DHTML_EVENT_ONCLICK(_T("ButtonOK"), OnButtonOK)
- DHTML_EVENT_ONCLICK(_T("ButtonCancel"), OnButtonCancel)
- END_DHTML_EVENT_MAP()
- // button 消息处理程序
- HRESULT button::OnButtonOK(IHTMLElement* /*pElement*/)
- {
- OnOK();
- return S_OK; // 除非将焦点设置到控件,否则返回 TRUE
- }
- HRESULT button::OnButtonCancel(IHTMLElement* /*pElement*/)
- {
- OnCancel();
- return S_OK; // 除非将焦点设置到控件,否则返回 TRUE
- }