?? lenth.cpp
字號:
// Lenth.cpp : implementation file
//
#include "stdafx.h"
#include "GCJText.h"
#include "Lenth.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CLenth dialog
CLenth::CLenth(CWnd* pParent /*=NULL*/)
: CDialog(CLenth::IDD, pParent)
{
//{{AFX_DATA_INIT(CLenth)
m_gdzj = 90.0f;
m_gxl = 0.98f;
m_gjhd = 25.0f;
m_tjgd = 100.0f;
m_kggd = 300.0f;
m_ggsd = 0.035f;
m_count = 100;
//}}AFX_DATA_INIT
}
void CLenth::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CLenth)
DDX_Text(pDX, IDC_EDIT1, m_gdzj);
DDV_MinMaxFloat(pDX, m_gdzj, 0.f, 300.f);
DDX_Text(pDX, IDC_EDIT2, m_gxl);
DDV_MinMaxFloat(pDX, m_gxl, 0.f, 20.f);
DDX_Text(pDX, IDC_EDIT3, m_gjhd);
DDV_MinMaxFloat(pDX, m_gjhd, 0.f, 500.f);
DDX_Text(pDX, IDC_EDIT4, m_tjgd);
DDV_MinMaxFloat(pDX, m_tjgd, 0.f, 400.f);
DDX_Text(pDX, IDC_EDIT5, m_kggd);
DDV_MinMaxFloat(pDX, m_kggd, 1.f, 500.f);
DDX_Text(pDX, IDC_EDIT6, m_ggsd);
DDV_MinMaxFloat(pDX, m_ggsd, 0.f, 100.f);
DDX_Text(pDX, IDC_EDIT7, m_count);
DDV_MinMaxInt(pDX, m_count, 1, 5000);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CLenth, CDialog)
//{{AFX_MSG_MAP(CLenth)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CLenth message handlers
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -