makestock.cpp
来自「个人理财系统(管理股票信息)」· C++ 代码 · 共 57 行
CPP
57 行
// MakeStock.cpp : implementation file
//
#include "stdafx.h"
#include "stocksystem.h"
#include "MakeStock.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMakeStock dialog
CMakeStock::CMakeStock(CWnd* pParent /*=NULL*/)
: CDialog(CMakeStock::IDD, pParent)
{
//{{AFX_DATA_INIT(CMakeStock)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CMakeStock::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CMakeStock)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CMakeStock, CDialog)
//{{AFX_MSG_MAP(CMakeStock)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CMakeStock message handlers
void CMakeStock::OnOK()
{
// TODO: Add extra validation here
CDialog::OnOK();
}
void CMakeStock::OnCancel()
{
// TODO: Add extra cleanup here
CDialog::OnCancel();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?