📄 finddlg.cpp
字号:
// FINDdlg.cpp : implementation file
//
#include "stdafx.h"
#include "STU.h"
#include "FINDdlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFINDdlg dialog
CFINDdlg::CFINDdlg(CWnd* pParent /*=NULL*/)
: CDialog(CFINDdlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CFINDdlg)
str = _T("0");
m_zhuanye = _T("财会");
m_nianji = _T("");
//}}AFX_DATA_INIT
}
void CFINDdlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CFINDdlg)
DDX_CBString(pDX, IDC_CZHUANYE, m_zhuanye);
DDX_Text(pDX, IDC_NIANJI, m_nianji);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CFINDdlg, CDialog)
//{{AFX_MSG_MAP(CFINDdlg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFINDdlg message handlers
BOOL CFINDdlg::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void CFINDdlg::OnOK()
{
// TODO: Add extra validation here
CDialog::OnOK();
}
void CFINDdlg::OnCancel()
{
// TODO: Add extra cleanup here
CDialog::OnCancel();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -