📄 findautherdlg.cpp
字号:
// FindAutherDlg.cpp : implementation file
//
#include "stdafx.h"
#include "LLL.h"
#include "FindAutherDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFindAutherDlg dialog
CFindAutherDlg::CFindAutherDlg(CWnd* pParent /*=NULL*/)
: CDialog(CFindAutherDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CFindAutherDlg)
m_name = _T("");
//}}AFX_DATA_INIT
}
void CFindAutherDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CFindAutherDlg)
DDX_Text(pDX, IDC_EDIT1, m_name);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CFindAutherDlg, CDialog)
//{{AFX_MSG_MAP(CFindAutherDlg)
ON_COMMAND(ID_FIND_AS_AUTHOR, OnFindAsAuthor)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFindAutherDlg message handlers
void CFindAutherDlg::OnFindAsAuthor()
{
// TODO: Add your command handler code here
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -