?? borrow.cpp
字號:
// borrow.cpp : implementation file
//
#include "stdafx.h"
#include "k.h"
#include "borrow.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// borrow dialog
borrow::borrow(CWnd* pParent /*=NULL*/)
: CDialog(borrow::IDD, pParent)
{
//{{AFX_DATA_INIT(borrow)
m_2 = _T("");
m_1 = 0.0;
m_3 = 0;
//}}AFX_DATA_INIT
}
void borrow::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(borrow)
DDX_Text(pDX, IDC_2, m_2);
DDX_Text(pDX, IDC_1, m_1);
DDX_Text(pDX, IDC_3, m_3);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(borrow, CDialog)
//{{AFX_MSG_MAP(borrow)
ON_EN_CHANGE(IDC_1, OnChange1)
ON_EN_CHANGE(IDC_2, OnChange2)
ON_EN_CHANGE(IDC_3, OnChange3)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// borrow message handlers
void borrow::OnChange1()
{
// TODO: If this is a RICHEDIT control, the control will not
// send this notification unless you override the CDialog::OnInitDialog()
// function and call CRichEditCtrl().SetEventMask()
// with the ENM_CHANGE flag ORed into the mask.
// TODO: Add your control notification handler code here
}
void borrow::OnChange2()
{
// TODO: If this is a RICHEDIT control, the control will not
// send this notification unless you override the CDialog::OnInitDialog()
// function and call CRichEditCtrl().SetEventMask()
// with the ENM_CHANGE flag ORed into the mask.
// TODO: Add your control notification handler code here
}
void borrow::OnChange3()
{
// TODO: If this is a RICHEDIT control, the control will not
// send this notification unless you override the CDialog::OnInitDialog()
// function and call CRichEditCtrl().SetEventMask()
// with the ENM_CHANGE flag ORed into the mask.
// TODO: Add your control notification handler code here
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -