HintDlg.cpp
上传用户:tyjx315
上传日期:2015-01-18
资源大小:1685k
文件大小:1k
- // HintDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "SuperMarket.h"
- #include "HintDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CHintDlg dialog
- CHintDlg::CHintDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CHintDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CHintDlg)
- m_salary = _T("");
- //}}AFX_DATA_INIT
- }
- void CHintDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CHintDlg)
- DDX_Text(pDX, IDC_EDIT1, m_salary);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CHintDlg, CDialog)
- //{{AFX_MSG_MAP(CHintDlg)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CHintDlg message handlers
- int CHintDlg::DoModal()
- {
- // TODO: Add your specialized code here and/or call the base class
- return CDialog::DoModal();
- }