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