AboutDlg.cpp
上传用户:cuijiu615
上传日期:2007-03-28
资源大小:45k
文件大小:1k
源码类别:

家庭/个人应用

开发平台:

Visual C++

  1. // AboutDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "phonebook.h"
  5. #include "AboutDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // AboutDlg dialog
  13. AboutDlg::AboutDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(AboutDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(AboutDlg)
  17. //}}AFX_DATA_INIT
  18. }
  19. void AboutDlg::DoDataExchange(CDataExchange* pDX)
  20. {
  21. CDialog::DoDataExchange(pDX);
  22. //{{AFX_DATA_MAP(AboutDlg)
  23. DDX_Control(pDX, IDC_STATICmail, m_link);
  24. //}}AFX_DATA_MAP
  25. }
  26. BEGIN_MESSAGE_MAP(AboutDlg, CDialog)
  27. //{{AFX_MSG_MAP(AboutDlg)
  28. //}}AFX_MSG_MAP
  29. END_MESSAGE_MAP()
  30. /////////////////////////////////////////////////////////////////////////////
  31. // AboutDlg message handlers
  32. BOOL AboutDlg::OnInitDialog() 
  33. {
  34. CDialog::OnInitDialog();
  35. m_link.SetURL("mailto://zjf-2004@163.com");
  36. return TRUE;  // return TRUE unless you set the focus to a control
  37.               // EXCEPTION: OCX Property Pages should return FALSE
  38. }