orderdlg.cpp

来自「此文件是加油站管理系统的界面,开发环境是 visual studio 2008 」· C++ 代码 · 共 41 行

CPP
41
字号
// orderDlg.cpp : implementation file
//

#include "stdafx.h"
#include "newgas.h"
#include "orderDlg.h"


// CorderDlg dialog

IMPLEMENT_DYNAMIC(CorderDlg, CDialog)

CorderDlg::CorderDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CorderDlg::IDD, pParent)
{

}

CorderDlg::~CorderDlg()
{
}

void CorderDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
}


BEGIN_MESSAGE_MAP(CorderDlg, CDialog)
	ON_BN_CLICKED(IDCANCEL, &CorderDlg::OnBnClickedCancel)
END_MESSAGE_MAP()


// CorderDlg message handlers

void CorderDlg::OnBnClickedCancel()
{
	// TODO: Add your control notification handler code here
	OnCancel();
}

⌨️ 快捷键说明

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