dlgbeginjs.cpp
来自「酒店业务管理系统C源码」· C++ 代码 · 共 46 行
CPP
46 行
// DlgBeginJS.cpp : implementation file
//
#include "stdafx.h"
#include "RMS.h"
#include "DlgBeginJS.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgBeginJS dialog
CDlgBeginJS::CDlgBeginJS(CWnd* pParent /*=NULL*/)
: CDialog(CDlgBeginJS::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgBeginJS)
m_desk = _T("");
m_dz = 1.0f;
//}}AFX_DATA_INIT
}
void CDlgBeginJS::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgBeginJS)
DDX_Text(pDX, IDC_EDIT_BJSDESK, m_desk);
DDX_Text(pDX, IDC_EDIT_BJSDZ, m_dz);
DDV_MinMaxFloat(pDX, m_dz, 0.1f, 1.f);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgBeginJS, CDialog)
//{{AFX_MSG_MAP(CDlgBeginJS)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgBeginJS message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?