dlgbigimage.cpp
来自「电子监控的网络编程实例」· C++ 代码 · 共 47 行
CPP
47 行
// DlgBigImage.cpp : implementation file
//
#include "stdafx.h"
#include "VideoCapture.h"
#include "DlgBigImage.h"
#include "VideoCaptureView.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgBigImage dialog
CDlgBigImage::CDlgBigImage(CWnd* pParent /*=NULL*/)
: CDialog(CDlgBigImage::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgBigImage)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CDlgBigImage::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgBigImage)
DDX_Control(pDX, IDC_IMAGE, m_image);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgBigImage, CDialog)
//{{AFX_MSG_MAP(CDlgBigImage)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgBigImage message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?