LinkProperties.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // LinkProperties.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "styler.h"
  5. #include "LinkProperties.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CLinkProperties dialog
  13. CLinkProperties::CLinkProperties(CWnd* pParent /*=NULL*/)
  14. : CDialog(CLinkProperties::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CLinkProperties)
  17. m_strAddress = _T("");
  18. m_strTitle = _T("");
  19. m_strParent = _T("");
  20. //}}AFX_DATA_INIT
  21. }
  22. void CLinkProperties::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CLinkProperties)
  26. DDX_Text(pDX, IDC_EDIT_ADDRESS, m_strAddress);
  27. DDX_Text(pDX, IDC_EDIT_TITLE, m_strTitle);
  28. DDX_Text(pDX, IDC_STATIC_PARENT, m_strParent);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CLinkProperties, CDialog)
  32. //{{AFX_MSG_MAP(CLinkProperties)
  33. // NOTE: the ClassWizard will add message map macros here
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CLinkProperties message handlers