www.pudn.com > ll1forwin.zip > TreeDlg.cpp


// TreeDlg.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "ll1forwin.h" 
#include "TreeDlg.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CTreeDlg dialog 
 
 
CTreeDlg::CTreeDlg(CWnd* pParent /*=NULL*/) 
	: CResizingDialog(CTreeDlg::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CTreeDlg) 
		// NOTE: the ClassWizard will add member initialization here 
	//}}AFX_DATA_INIT 
} 
 
 
void CTreeDlg::DoDataExchange(CDataExchange* pDX) 
{ 
	CResizingDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CTreeDlg) 
	DDX_Control(pDX, IDC_TREE1, m_tree); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CTreeDlg, CResizingDialog) 
	//{{AFX_MSG_MAP(CTreeDlg) 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CTreeDlg message handlers 
 
BOOL CTreeDlg::OnInitDialog()  
{ 
	CResizingDialog::OnInitDialog(); 
	SetIcon(LoadIcon(::AfxGetInstanceHandle(), MAKEINTRESOURCE(IDR_MAINFRAME)),FALSE); 
	// TODO: Add extra initialization here 
	return TRUE;  // return TRUE unless you set the focus to a control 
	              // EXCEPTION: OCX Property Pages should return FALSE 
}