testportdlg.h
来自「一个功能比较强大的串口通讯程序。用类的形式表现」· C头文件 代码 · 共 55 行
H
55 行
// testportDlg.h : header file
//
#if !defined(AFX_TESTPORTDLG_H__60D033FE_B8B5_49B7_8B98_DF5A8109366E__INCLUDED_)
#define AFX_TESTPORTDLG_H__60D033FE_B8B5_49B7_8B98_DF5A8109366E__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// CTestportDlg dialog
class CTestportDlg : public CDialog
{
// Construction
public:
CTestportDlg(CWnd* pParent = NULL); // standard constructor
void SendString(CString str);
int String2Hex(CString str);
char ConvertHexChar(char ch);
// Dialog Data
//{{AFX_DATA(CTestportDlg)
enum { IDD = IDD_TESTPORT_DIALOG };
CString m_sendstr;
CString m_recstr;
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CTestportDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
//{{AFX_MSG(CTestportDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnButton1();
virtual void OnOK();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_TESTPORTDLG_H__60D033FE_B8B5_49B7_8B98_DF5A8109366E__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?