📄 dlgcommset.h
字号:
#pragma once
// CDlgCommSet 对话框
class CDlgCommSet : public CDialog
{
DECLARE_DYNAMIC(CDlgCommSet)
public:
CDlgCommSet(CWnd* pParent = NULL); // 标准构造函数
virtual ~CDlgCommSet();
// 对话框数据
enum { IDD = IDD_DLG_COMMSET };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
int m_nComm;
int m_nBaut;
int m_nParity;
int m_nDataLen;
int m_nStopBits;
int m_nShake;
virtual BOOL OnInitDialog();
void init(int nComm, int nBaut, int nParity, int nDataBits, int nStopBits, int nShakeHand);
afx_msg void OnBnClickedOk();
void GetConfig(int& nComm, int& nBaut, int& nParity, int& nDataBits, int& nStopBits, int& nShakeHand);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -