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

📄 subdlg.cpp

📁 一个MFC编写的教学管理程序,可以实现成绩的输入和排序等,适合初学MFC者
💻 CPP
字号:
// subdlg.cpp : implementation file
//

#include "stdafx.h"
#include "教学系统.h"
#include "subdlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// subdlg dialog


subdlg::subdlg(CWnd* pParent /*=NULL*/)
	: CDialog(subdlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(subdlg)
	m_s = 0;
	//}}AFX_DATA_INIT
}


void subdlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(subdlg)
	DDX_CBIndex(pDX, IDC_findsub, m_s);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(subdlg, CDialog)
	//{{AFX_MSG_MAP(subdlg)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// subdlg message handlers

⌨️ 快捷键说明

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