矩阵控制器dlg.h

来自「本程序的开发环境是VC++,实现的功能是串口通信.」· C头文件 代码 · 共 87 行

H
87
字号
// 矩阵控制器Dlg.h : header file
//

#if !defined(AFX_DLG_H__AB8E0B77_2B09_11D4_BDA5_0000B4C07D28__INCLUDED_)
#define AFX_DLG_H__AB8E0B77_2B09_11D4_BDA5_0000B4C07D28__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "SerialCom.h"

/////////////////////////////////////////////////////////////////////////////
// CMyDlg dialog
class CSerialCom;

class CMyDlg : public CDialog
{
// Construction
public:
	CMyDlg(CWnd* pParent = NULL);	// standard constructor
    CSerialCom *m_pCom;

	void DisplayString(int m);

// Dialog Data
	//{{AFX_DATA(CMyDlg)
	enum { IDD = IDD_MY_DIALOG };
	CButton	m_Backone2Button;
	CButton	m_Addone2Button;
	CButton	m_Backward2Button;
	CButton	m_Advanced2Button;
	CButton	m_Stop2Button;
	CButton	m_Backone1Button;
	CButton	m_Addone1Button;
	CButton	m_Backward1Button;
	CButton	m_Advanced1Button;
	CButton	m_Stop1Button;
	CButton	m_IntoproButton;
	CString	m_csReceive;
	CString	m_csSend;
	CString	m_csMon;
	CString	m_csCam;
	CString	m_csCam1;
	CString	m_csCam2;
	CString	m_csTime;
	CString	m_csDesk;
	CString	m_csMessage;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMyDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CMyDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnButton12();
	afx_msg void OnButton7();
	afx_msg void OnButton9();
	afx_msg void OnButton10();
	afx_msg void OnButton11();
	afx_msg void OnButton1();
	afx_msg void OnButton2();
	afx_msg void OnButton3();
	afx_msg void OnButton4();
	afx_msg void OnButton5();
	afx_msg void OnButton13();
	afx_msg void OnButton15();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_DLG_H__AB8E0B77_2B09_11D4_BDA5_0000B4C07D28__INCLUDED_)

⌨️ 快捷键说明

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