?? cutpic.cpp
字號:
// CutPic.cpp : implementation file
//
#include "stdafx.h"
#include "linjunjuan.h"
#include "CutPic.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCutPic dialog
CCutPic::CCutPic(CWnd* pParent /*=NULL*/)
: CDialog(CCutPic::IDD, pParent)
{
//{{AFX_DATA_INIT(CCutPic)
m_first_col = 0;
m_first_row = 0;
m_pic_col = 0;
m_pic_row = 0;
//}}AFX_DATA_INIT
}
void CCutPic::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CCutPic)
DDX_Text(pDX, IDC_FIRSTPOS_COL, m_first_col);
DDX_Text(pDX, IDC_FIRSTPOS_ROW, m_first_row);
DDX_Text(pDX, IDC_PIC_COL, m_pic_col);
DDX_Text(pDX, IDC_PIC_ROW, m_pic_row);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CCutPic, CDialog)
//{{AFX_MSG_MAP(CCutPic)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CCutPic message handlers
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -