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