1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #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::TakeStautsSel(CWnd* pParent )
- : CDialog(TakeStautsSel::IDD, pParent)
- {
-
- m_radio1 = 0;
-
- }
- void TakeStautsSel::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
-
- DDX_Radio(pDX, IDC_RADIO1, m_radio1);
-
- }
- BEGIN_MESSAGE_MAP(TakeStautsSel, CDialog)
-
-
- END_MESSAGE_MAP()
- void TakeStautsSel::OnOK()
- {
-
- UpdateData();
- CDialog::OnOK();
- }
- void TakeStautsSel::OnCancel()
- {
-
- OnOK();
- }
|