⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inputdlg.cpp

📁 用MFC 实现线性表的插入删除等
💻 CPP
字号:
// InputDlg.cpp : implementation file
//

#include "stdafx.h"
#include "sdsd.h"
#include "InputDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CInputDlg dialog


CInputDlg::CInputDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CInputDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CInputDlg)
	m_nX0 = _T("");
	m_nX9 = _T("");
	m_nX1 = _T("");
	m_nX2 = _T("");
	m_nX3 = _T("");
	m_nX4 = _T("");
	m_nX5 = _T("");
	m_nX6 = _T("");
	m_nX7 = _T("");
	m_nX8 = _T("");
	m_ntail = 0;
	//}}AFX_DATA_INIT
}


void CInputDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CInputDlg)
	DDX_Text(pDX, IDC_EDIT1, m_nX0);
	DDX_Text(pDX, IDC_EDIT10, m_nX9);
	DDX_Text(pDX, IDC_EDIT2, m_nX1);
	DDX_Text(pDX, IDC_EDIT3, m_nX2);
	DDX_Text(pDX, IDC_EDIT4, m_nX3);
	DDX_Text(pDX, IDC_EDIT5, m_nX4);
	DDX_Text(pDX, IDC_EDIT6, m_nX5);
	DDX_Text(pDX, IDC_EDIT7, m_nX6);
	DDX_Text(pDX, IDC_EDIT8, m_nX7);
	DDX_Text(pDX, IDC_EDIT9, m_nX8);
	DDX_Text(pDX, IDC_EDIT11, m_ntail);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CInputDlg, CDialog)
	//{{AFX_MSG_MAP(CInputDlg)
	ON_BN_CLICKED(IDC_BUTTON2, OnButton2)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CInputDlg message handlers

void CInputDlg::OnButton2() 
{
	// TODO: Add your control notification handler code here
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -