omseting.cpp
来自「visual c6.0实现的窜口通讯」· C++ 代码 · 共 47 行
CPP
47 行
// omSeting.cpp : implementation file
//
#include "stdafx.h"
#include "ComTest.h"
#include "omSeting.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// ComSeting dialog
ComSeting::ComSeting(CWnd* pParent /*=NULL*/)
: CDialog(ComSeting::IDD, pParent)
{
//{{AFX_DATA_INIT(ComSeting)
m_ComNum = -1;
//}}AFX_DATA_INIT
}
void ComSeting::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(ComSeting)
DDX_CBIndex(pDX, IDC_COMNUM, m_ComNum);
// DDX_Control(pDX, IDC_MSCOMM1, m_com);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(ComSeting, CDialog)
//{{AFX_MSG_MAP(ComSeting)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// ComSeting message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?