MyDialog.cpp
上传用户:conquerdj
上传日期:2018-03-29
资源大小:33k
文件大小:1k
源码类别:

多显示器编程

开发平台:

Visual C++

  1. // MyDialog.cpp : implementation file
  2. //
  3. #include "resource.h"
  4. #include "MyDialog.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // MyDialog dialog
  12. MyDialog::MyDialog(CWnd* pParent /*=NULL*/)
  13. : CDialog(MyDialog::IDD, pParent)
  14. {
  15. //{{AFX_DATA_INIT(MyDialog)
  16. // NOTE: the ClassWizard will add member initialization here
  17. //}}AFX_DATA_INIT
  18. }
  19. void MyDialog::DoDataExchange(CDataExchange* pDX)
  20. {
  21. CDialog::DoDataExchange(pDX);
  22. //{{AFX_DATA_MAP(MyDialog)
  23. // NOTE: the ClassWizard will add DDX and DDV calls here
  24. //}}AFX_DATA_MAP
  25. }
  26. BEGIN_MESSAGE_MAP(MyDialog, CDialog)
  27. //{{AFX_MSG_MAP(MyDialog)
  28. // NOTE: the ClassWizard will add message map macros here
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // MyDialog message handlers