RegListDLG.cpp
上传用户:lbr_007
上传日期:2019-05-31
资源大小:282k
文件大小:1k
- // RegListDLG.cpp : implementation file
- //
- #include "stdafx.h"
- #include "tiffsample.h"
- #include "RegListDLG.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // RegListDLG dialog
- RegListDLG::RegListDLG(CWnd* pParent /*=NULL*/)
- : CDialog(RegListDLG::IDD, pParent)
- {
- //{{AFX_DATA_INIT(RegListDLG)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
- void RegListDLG::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(RegListDLG)
- DDX_Control(pDX, IDC_REG_LIST, m_list);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(RegListDLG, CDialog)
- //{{AFX_MSG_MAP(RegListDLG)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // RegListDLG message handlers
- BOOL RegListDLG::OnInitDialog()
- {
- CDialog::OnInitDialog();
-
- // TODO: Add extra initialization here
-
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }