su_set_r.cpp

来自「该系统为花店销售管理系统」· C++ 代码 · 共 44 行

CPP
44
字号
// su_set_r.cpp : implementation file
//

#include "stdafx.h"
#include "flowerSaleSystem.h"
#include "su_set_r.h"

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

/////////////////////////////////////////////////////////////////////////////
// su_set_r dialog


su_set_r::su_set_r(CWnd* pParent /*=NULL*/)
	: CDialog(su_set_r::IDD, pParent)
{
	//{{AFX_DATA_INIT(su_set_r)
	m_remarks = _T("");
	//}}AFX_DATA_INIT
}


void su_set_r::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(su_set_r)
	DDX_Text(pDX, IDC_EDITremarks, m_remarks);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// su_set_r message handlers

⌨️ 快捷键说明

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