InputStringDlg.cpp
上传用户:yffx2008
上传日期:2014-10-12
资源大小:12414k
文件大小:1k
- // InputStringDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "gpssc.h"
- #include "InputStringDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CInputStringDlg dialog
- CInputStringDlg::CInputStringDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CInputStringDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CInputStringDlg)
- m_sCaption = _T("请输入字符串:");
- m_sString = _T("");
- //}}AFX_DATA_INIT
- }
- void CInputStringDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CInputStringDlg)
- DDX_Text(pDX, IDC_CAPTION, m_sCaption);
- DDX_Text(pDX, IDC_STRING, m_sString);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CInputStringDlg, CDialog)
- //{{AFX_MSG_MAP(CInputStringDlg)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CInputStringDlg message handlers