DlgQuit.cpp
上传用户:jzscgs158
上传日期:2022-05-25
资源大小:8709k
文件大小:2k
源码类别:

百货/超市行业

开发平台:

Visual C++

  1. // DlgQuit.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "NCShop.h"
  5. #include "DlgQuit.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDlgQuit dialog
  13. CDlgQuit::CDlgQuit(CWnd* pParent /*=NULL*/)
  14. : CDialog(CDlgQuit::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CDlgQuit)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. m_intStyle=1;
  20. }
  21. void CDlgQuit::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(CDlgQuit)
  25. DDX_Control(pDX, IDOK, m_BtnOk);
  26. DDX_Control(pDX, IDCANCEL, m_BtnCancel);
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(CDlgQuit, CDialog)
  30. //{{AFX_MSG_MAP(CDlgQuit)
  31. //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CDlgQuit message handlers
  35. BOOL CDlgQuit::OnInitDialog() 
  36. {
  37. CDialog::OnInitDialog();
  38. // TODO: Add extra initialization here
  39. CheckRadioButton(IDC_RADIO1,IDC_RADIO2,IDC_RADIO1);
  40. m_BtnOk.SetXIcon(IDI_ICONBUTTON);
  41. m_BtnCancel.SetXIcon(IDI_ICONBUTTON);
  42. return TRUE;  // return TRUE unless you set the focus to a control
  43.               // EXCEPTION: OCX Property Pages should return FALSE
  44. }
  45. void CDlgQuit::OnOK() 
  46. {
  47. // TODO: Add extra validation here
  48. if(GetCheckedRadioButton(IDC_RADIO1,IDC_RADIO2)==IDC_RADIO1)
  49. m_intStyle=0;
  50. else
  51. m_intStyle=1;
  52. CDialog::OnOK();
  53. }