DIALOGS.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // Dialogs.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "AutoClik.h"
  14. #include "Dialogs.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CChangeText dialog
  21. CChangeText::CChangeText(CWnd* pParent /*=NULL*/)
  22. : CDialog(CChangeText::IDD, pParent)
  23. {
  24. //{{AFX_DATA_INIT(CChangeText)
  25. m_str = _T("");
  26. //}}AFX_DATA_INIT
  27. }
  28. void CChangeText::DoDataExchange(CDataExchange* pDX)
  29. {
  30. CDialog::DoDataExchange(pDX);
  31. //{{AFX_DATA_MAP(CChangeText)
  32. DDX_Text(pDX, IDC_EDIT1, m_str);
  33. //}}AFX_DATA_MAP
  34. }
  35. BEGIN_MESSAGE_MAP(CChangeText, CDialog)
  36. //{{AFX_MSG_MAP(CChangeText)
  37. // NOTE: the ClassWizard will add message map macros here
  38. //}}AFX_MSG_MAP
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CChangeText message handlers