comhelp.cpp

来自「一个很全的编译器程序,有各种文法的代码,各种方法都分开写的」· C++ 代码 · 共 50 行

CPP
50
字号
// comhelp.cpp : implementation file
//

#include "stdafx.h"
#include "face.h"
#include "comhelp.h"

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

/////////////////////////////////////////////////////////////////////////////
// Ccomhelp dialog


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


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


BEGIN_MESSAGE_MAP(Ccomhelp, CDialog)
	//{{AFX_MSG_MAP(Ccomhelp)
	ON_BN_CLICKED(IDC_RETURN, OnReturn)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// Ccomhelp message handlers

//从命令帮助对话框返回:                                      
void Ccomhelp::OnReturn() 
{
	CDialog::OnCancel();	
}

⌨️ 快捷键说明

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