📄 cerout4.cpp
字号:
// Cerout4.cpp : implementation file
//
#include "stdafx.h"
#include "bishe.h"
#include "Cerout4.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCerout4 dialog
CCerout4::CCerout4(CWnd* pParent /*=NULL*/)
: CDialog(CCerout4::IDD, pParent)
{
//{{AFX_DATA_INIT(CCerout4)
m_outfile = _T("");
//}}AFX_DATA_INIT
}
void CCerout4::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CCerout4)
DDX_Text(pDX, IDC_EDIT1, m_outfile);
//}}AFX_DATA_MAP
}
void CCerout4::GetData()
{
UpdateData(true);
GetDlgItemText(IDC_EDIT1,g_OUTFILE);
}
BEGIN_MESSAGE_MAP(CCerout4, CDialog)
//{{AFX_MSG_MAP(CCerout4)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CCerout4 message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -