Set.cpp
上传用户:mjs2008
上传日期:2021-05-16
资源大小:5089k
文件大小:1k
源码类别:

生物技术

开发平台:

Visual C++

  1. // Set.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "cell.h"
  5. #include "Set.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CSet dialog
  13. CSet::CSet(CWnd* pParent /*=NULL*/)
  14. : CDialog(CSet::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CSet)
  17. m_nPreCount = 3;
  18. //}}AFX_DATA_INIT
  19. }
  20. void CSet::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CSet)
  24. DDX_Text(pDX, IDC_PRE_COUNT, m_nPreCount);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CSet, CDialog)
  28. //{{AFX_MSG_MAP(CSet)
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CSet message handlers
  33. void CSet::OnOK() 
  34. {
  35. // TODO: Add extra validation here
  36. UpdateData(TRUE);
  37. if (m_nPreCount<0 || m_nPreCount>20)
  38. {
  39. MessageBox("预先腐蚀次数应该在0-20之间");
  40. return;
  41. }
  42. CDialog::OnOK();
  43. }