CommandLineTestDlg.h
上传用户:sdzdgs
上传日期:2020-11-14
资源大小:1589k
文件大小:2k
源码类别:

编辑框

开发平台:

Visual C++

  1. // CommandLineTestDlg.h : header file
  2. //
  3. #if !defined(AFX_COMMANDLINETESTDLG_H__2B7C15E7_EF20_49C5_A59A_100B36A474EA__INCLUDED_)
  4. #define AFX_COMMANDLINETESTDLG_H__2B7C15E7_EF20_49C5_A59A_100B36A474EA__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CCommandLineTestDlg dialog
  10. #include "CommandLine.h"
  11. #include <math.h>
  12. #define ID_CTRL_COMMAND_LINE (WM_USER+1001)
  13. class CCommandLineTestDlg : public CDialog
  14. {
  15.   // Construction/Destruction
  16.   public:
  17.   CCommandLineTestDlg(CWnd* pParent = NULL); // standard constructor
  18.   private:
  19.     void SizeControls();
  20.   // Dialog Data
  21.   public:
  22.   //{{AFX_DATA(CCommandLineTestDlg)
  23. enum { IDD = IDD_COMMANDLINETEST_DIALOG };
  24. CEdit m_edtResponse;
  25. CEdit m_edtReceived;
  26.     CCommandLine m_CommandLine;
  27.   CListBox m_lstReceived;
  28. //}}AFX_DATA
  29.   // ClassWizard generated virtual function overrides
  30.   //{{AFX_VIRTUAL(CCommandLineTestDlg)
  31. protected:
  32.   virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  33. //}}AFX_VIRTUAL
  34.   // Implementation
  35.   protected:
  36.   HICON m_hIcon;
  37.   // Generated message map functions
  38.   //{{AFX_MSG(CCommandLineTestDlg)
  39.   virtual BOOL OnInitDialog();
  40.   afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  41.   afx_msg void OnPaint();
  42.   afx_msg HCURSOR OnQueryDragIcon();
  43.   afx_msg void OnSize(UINT nType, int cx, int cy);
  44.    afx_msg void OnBtnClear();
  45.   afx_msg void OnCloseupCmbStyle();
  46.     afx_msg void OnCommandSent(NMHDR* pNMHDR, LRESULT* pResult);
  47. afx_msg void OnBtnSend();
  48. //}}AFX_MSG
  49.   DECLARE_MESSAGE_MAP()
  50. };
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_COMMANDLINETESTDLG_H__2B7C15E7_EF20_49C5_A59A_100B36A474EA__INCLUDED_)