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

📄 copydatadlg.cpp

📁 是本人编写的串行通信的程序
💻 CPP
字号:
// CopyDataDlg.cpp : implementation file
//

#include "stdafx.h"
#include "inf of com.h"
#include "CopyDataDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CCopyDataDlg dialog


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


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


BEGIN_MESSAGE_MAP(CCopyDataDlg, CDialog)
	//{{AFX_MSG_MAP(CCopyDataDlg)
	ON_BN_CLICKED(IDC_RADIO1, OnRadio1)
	ON_BN_CLICKED(IDC_RADIO2, OnRadio2)
	ON_BN_CLICKED(IDC_RADIO3, OnRadio3)
	ON_BN_CLICKED(IDC_RADIO4, OnRadio4)
	ON_BN_CLICKED(IDC_RADIO5, OnRadio5)
	ON_BN_CLICKED(IDC_RADIO6, OnRadio6)
	ON_BN_CLICKED(IDC_RADIO7, OnRadio7)
	ON_BN_CLICKED(IDC_BUTTON_Close, OnBUTTONClose)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCopyDataDlg message handlers

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

void CCopyDataDlg::OnCancel() 
{
	// TODO: Add extra cleanup here
	
	//CDialog::OnCancel();
}

void CCopyDataDlg::OnRadio1() 
{
	// TODO: Add your control notification handler code here
	
}

void CCopyDataDlg::OnRadio2() 
{
	// TODO: Add your control notification handler code here
	
}

void CCopyDataDlg::OnRadio3() 
{
	// TODO: Add your control notification handler code here
	
}

void CCopyDataDlg::OnRadio4() 
{
	// TODO: Add your control notification handler code here
	
}

void CCopyDataDlg::OnRadio5() 
{
	// TODO: Add your control notification handler code here
	
}

void CCopyDataDlg::OnRadio6() 
{
	// TODO: Add your control notification handler code here
	
}

void CCopyDataDlg::OnRadio7() 
{
	// TODO: Add your control notification handler code here
	
}

void CCopyDataDlg::OnBUTTONClose() 
{
	// TODO: Add your control notification handler code here
	CDialog::OnOK();
}

⌨️ 快捷键说明

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