busydlg.cpp

来自「一篇有关数字水印的程序」· C++ 代码 · 共 59 行

CPP
59
字号
// BusyDlg.cpp : implementation file
//

#include "stdafx.h"
#include "WaterMarkx.h"
#include "BusyDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CBusyDlg dialog


CBusyDlg::CBusyDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CBusyDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CBusyDlg)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CBusyDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CBusyDlg)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CBusyDlg, CDialog)
	//{{AFX_MSG_MAP(CBusyDlg)
	ON_WM_DESTROY()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CBusyDlg message handlers

void CBusyDlg::OnDestroy() 
{
	CDialog::OnDestroy();
	
	// TODO: Add your message handler code here
	
}

void CBusyDlg::OnOK() 
{
	// TODO: Add extra validation here
	
	CDialog::OnOK();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?