1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // TakeStautsSel.cpp : implementation file
- //
- #include "stdafx.h"
- #include "LYFZIPManage.h"
- #include "TakeStautsSel.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // TakeStautsSel dialog
- TakeStautsSel::TakeStautsSel(CWnd* pParent /*=NULL*/)
- : CDialog(TakeStautsSel::IDD, pParent)
- {
- //{{AFX_DATA_INIT(TakeStautsSel)
- m_radio1 = 0;
- //}}AFX_DATA_INIT
- }
- void TakeStautsSel::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(TakeStautsSel)
- DDX_Radio(pDX, IDC_RADIO1, m_radio1);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(TakeStautsSel, CDialog)
- //{{AFX_MSG_MAP(TakeStautsSel)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // TakeStautsSel message handlers
- void TakeStautsSel::OnOK()
- {
- // TODO: Add extra validation here
- UpdateData();
- CDialog::OnOK();
- }
- void TakeStautsSel::OnCancel()
- {
- // TODO: Add extra cleanup here
- OnOK();
- // CDialog::OnCancel();
- }
|