TakeStautsSel.cpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // TakeStautsSel.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "LYFZIPManage.h"
  5. #include "TakeStautsSel.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // TakeStautsSel dialog
  13. TakeStautsSel::TakeStautsSel(CWnd* pParent /*=NULL*/)
  14. : CDialog(TakeStautsSel::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(TakeStautsSel)
  17. m_radio1 = 0;
  18. //}}AFX_DATA_INIT
  19. }
  20. void TakeStautsSel::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(TakeStautsSel)
  24. DDX_Radio(pDX, IDC_RADIO1, m_radio1);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(TakeStautsSel, CDialog)
  28. //{{AFX_MSG_MAP(TakeStautsSel)
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // TakeStautsSel message handlers
  33. void TakeStautsSel::OnOK()
  34. {
  35. // TODO: Add extra validation here
  36. UpdateData();
  37. CDialog::OnOK();
  38. }
  39. void TakeStautsSel::OnCancel()
  40. {
  41. // TODO: Add extra cleanup here
  42. OnOK();
  43. // CDialog::OnCancel();
  44. }