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

📄 transtestdlg.cpp

📁 口通信 VC 完整串口通信程序Vc++源代码 串口通讯 vc++ 源代码 vc 串口通信 串口通信 mfc 通信 发送程序 vc++ 串口 VC 串口通信程序 完整串口通信程序Vc 源代码 VC串口通
💻 CPP
字号:
// TransTestDlg.cpp : implementation file
//

#include "stdafx.h"
#include "GSMTest.h"
#include "TransTestDlg.h"
#include "TransGL.h"

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

/////////////////////////////////////////////////////////////////////////////
// CTransTestDlg dialog


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


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


BEGIN_MESSAGE_MAP(CTransTestDlg, CDialog)
	//{{AFX_MSG_MAP(CTransTestDlg)
	ON_BN_CLICKED(IDC_TRANSGL, OnTransGL)
	ON_BN_CLICKED(IDC_MSGGL, OnMsggl)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CTransTestDlg message handlers

void CTransTestDlg::OnTransGL() 
{
	//变压器管理
	CTransGL dlg;
	dlg.DoModal();
}

void CTransTestDlg::OnMsggl() 
{
	//短信管理
	
}

⌨️ 快捷键说明

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