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

📄 faildlg.cpp

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





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

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

/////////////////////////////////////////////////////////////////////////////
// FailDlg dialog


FailDlg::FailDlg(CWnd* pParent /*=NULL*/)
	: CDialog(FailDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(FailDlg)
	m_class = 0;
	test=0;
	//}}AFX_DATA_INIT
}


void FailDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(FailDlg)
	DDX_CBIndex(pDX, IDC_COMBO1, m_class);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(FailDlg, CDialog)
	//{{AFX_MSG_MAP(FailDlg)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// FailDlg message handlers

void FailDlg::OnOK() 
{	
	CDialog::OnOK();
	test=1;
//	CMyView::fail(*this)
}

⌨️ 快捷键说明

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