button.cpp
上传用户:hshkfsl
上传日期:2014-01-04
资源大小:1910k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. // button.cpp : 实现文件
  2. //
  3. #include "stdafx.h"
  4. #include "系统优化.h"
  5. #include "button.h"
  6. // button 对话框
  7. IMPLEMENT_DYNCREATE(button, CDHtmlDialog)
  8. button::button(CWnd* pParent /*=NULL*/)
  9. : CDHtmlDialog(button::IDD, button::IDH, pParent)
  10. {
  11. }
  12. button::~button()
  13. {
  14. }
  15. void button::DoDataExchange(CDataExchange* pDX)
  16. {
  17. CDHtmlDialog::DoDataExchange(pDX);
  18. }
  19. BOOL button::OnInitDialog()
  20. {
  21. CDHtmlDialog::OnInitDialog();
  22. return TRUE;  // 除非将焦点设置到控件,否则返回 TRUE
  23. }
  24. BEGIN_MESSAGE_MAP(button, CDHtmlDialog)
  25. END_MESSAGE_MAP()
  26. BEGIN_DHTML_EVENT_MAP(button)
  27. DHTML_EVENT_ONCLICK(_T("ButtonOK"), OnButtonOK)
  28. DHTML_EVENT_ONCLICK(_T("ButtonCancel"), OnButtonCancel)
  29. END_DHTML_EVENT_MAP()
  30. // button 消息处理程序
  31. HRESULT button::OnButtonOK(IHTMLElement* /*pElement*/)
  32. {
  33. OnOK();
  34. return S_OK;  // 除非将焦点设置到控件,否则返回 TRUE
  35. }
  36. HRESULT button::OnButtonCancel(IHTMLElement* /*pElement*/)
  37. {
  38. OnCancel();
  39. return S_OK;  // 除非将焦点设置到控件,否则返回 TRUE
  40. }