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

📄 sendcmddlg.cpp

📁 这是一个手机校准程序
💻 CPP
字号:
//****************** Copyright 1999 Mobilink Telecom, Inc. *********************
//
// Description: Implements the CSendCmdDlg class.     
//
// $RCSfile: SendCmdDlg.cpp $
// $Revision: 1.2 $
// $Date: 1999/06/08 22:10:17 $
// $Author: gdheinz $
//
//******************************** History *************************************
//
// $Log: SendCmdDlg.cpp $
// Revision 1.2  1999/06/08 22:10:17  gdheinz
// Added documentation block
//
//******************************************************************************
// SendCmdDlg.cpp : implementation file
//

#include "stdafx.h"
#include "MTIcalibrate.h"
#include "SendCmdDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSendCmdDlg dialog


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


void CSendCmdDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CSendCmdDlg)
	DDX_Text(pDX, IDC_SENDCMD_TEXT, m_Text);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CSendCmdDlg message handlers

⌨️ 快捷键说明

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