fzn.cpp
来自「工资管理程序 自己做的程序 希望大家喜欢」· C++ 代码 · 共 61 行
CPP
61 行
// FZN.cpp : implementation file
//
#include "stdafx.h"
#include "工资管理程序.h"
#include "FZN.h"
//#include "工资管理程序View.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// FZN dialog
extern int f;
FZN::FZN(CWnd* pParent /*=NULL*/)
: CDialog(FZN::IDD, pParent)
{
//{{AFX_DATA_INIT(FZN)
m_dlgBAOX = 0.0;
m_dlgMONS = 0.0;
//}}AFX_DATA_INIT
}
void FZN::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(FZN)
DDX_Text(pDX, IDC_EDITJS7, m_dlgBAOX);
DDV_MinMaxDouble(pDX, m_dlgBAOX, 0., 10000.);
DDX_Text(pDX, IDC_EDITJS5, m_dlgMONS);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(FZN, CDialog)
//{{AFX_MSG_MAP(FZN)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// FZN message handlers
BOOL FZN::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
if(f)
{
CWnd * pWndButn;
pWndButn=GetDlgItem(IDC_EDITJS5);
pWndButn->EnableWindow(FALSE);
}
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?