SquareDlg.cpp
Upload User: jjlianmen
Upload Date: 2022-08-03
Package Size: 157k
Code Size: 1k
Category:

Special Effects

Development Platform:

Matlab

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