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

📄 search.cpp

📁 程序天下 Google Earth与Google API开发 双剑合璧
💻 CPP
字号:
// SEARCH.cpp : implementation file
//

#include "stdafx.h"
#include "sample13.h"
#include "SEARCH.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSEARCH dialog


CSEARCH::CSEARCH(CWnd* pParent /*=NULL*/)
	: CDialog(CSEARCH::IDD, pParent)
{
	//{{AFX_DATA_INIT(CSEARCH)
	m_strSearch = _T("");
	//}}AFX_DATA_INIT
}


void CSEARCH::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CSEARCH)
	DDX_Text(pDX, IDC_EDIT1, m_strSearch);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CSEARCH, CDialog)
	//{{AFX_MSG_MAP(CSEARCH)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSEARCH message handlers

⌨️ 快捷键说明

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