123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #include "stdafx.h"
- #include "CameraTargetDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- CCameraTargetDlg::CCameraTargetDlg(CWnd* pParent )
- : CDialog(CCameraTargetDlg::IDD, pParent)
- {
-
- m_nType = 0;
- m_strName = _T("");
-
- }
- void CCameraTargetDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
-
- DDX_Radio(pDX, IDC_RADIO_FIXED, m_nType);
- DDX_Text(pDX, IDC_EDIT_NAME, m_strName);
-
- }
- BEGIN_MESSAGE_MAP(CCameraTargetDlg, CDialog)
-
- ON_COMMAND(ID_POPUP_NEWCAMERA_FIXED, OnPopupNewcameraFixed)
-
- END_MESSAGE_MAP()
- void CCameraTargetDlg::OnPopupNewcameraFixed()
- {
-
-
- }
|