mmgl.cpp

来自「可以帮助管理员进行图书的采购、销售记录管理」· C++ 代码 · 共 51 行

CPP
51
字号
// MMGL.cpp : implementation file
//

#include "stdafx.h"
#include "图书销售管理系统.h"
#include "MMGL.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMMGL dialog


CMMGL::CMMGL(CWnd* pParent /*=NULL*/)
	: CDialog(CMMGL::IDD, pParent)
{
	//{{AFX_DATA_INIT(CMMGL)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CMMGL::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CMMGL)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CMMGL message handlers

int CMMGL::DoModal() 
{
	// TODO: Add your specialized code here and/or call the base class
	
	return CDialog::DoModal();
}

⌨️ 快捷键说明

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