本原代码集合了树形控件

源代码在线查看: input.cpp

软件大小: 291 K
上传用户: Mrsliu
关键词: 代码 控件
下载地址: 免注册下载 普通下载 VIP

相关代码

				// input.cpp : implementation file
				//
				
				#include "stdafx.h"
				#include "hellor14.h"
				#include "input.h"
				
				#ifdef _DEBUG
				#define new DEBUG_NEW
				#undef THIS_FILE
				static char THIS_FILE[] = __FILE__;
				#endif
				
				/////////////////////////////////////////////////////////////////////////////
				// input dialog
				
				
				input::input(CWnd* pParent /*=NULL*/)
					: CDialog(input::IDD, pParent)
				{
					//{{AFX_DATA_INIT(input)
					m_dimension1 = _T("");
					//}}AFX_DATA_INIT
				}
				
				
				void input::DoDataExchange(CDataExchange* pDX)
				{
					CDialog::DoDataExchange(pDX);
					//{{AFX_DATA_MAP(input)
					DDX_Text(pDX, IDC_EDIT1, m_dimension1);
					//}}AFX_DATA_MAP
				}
				
				
				BEGIN_MESSAGE_MAP(input, CDialog)
					//{{AFX_MSG_MAP(input)
					//}}AFX_MSG_MAP
				END_MESSAGE_MAP()
				
				/////////////////////////////////////////////////////////////////////////////
				// input message handlers
				
				void input::OnOK() 
				{
					// TODO: Add extra validation here
					
					CDialog::OnOK();
				}
							

相关资源