⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cutpic.cpp

📁 图像处理软件,功能比较基础
💻 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 + -