DialogPhysicalInput.h 571 B

12345678910111213141516171819202122232425262728293031
  1. #pragma once
  2. #include "afxwin.h"
  3. // CDialogPhysicalInput 对话框
  4. class CDialogPhysicalInput : public CDialogEx
  5. {
  6. DECLARE_DYNAMIC(CDialogPhysicalInput)
  7. public:
  8. CDialogPhysicalInput(CWnd* pParent = NULL); // 标准构造函数
  9. virtual ~CDialogPhysicalInput();
  10. // 对话框数据
  11. enum { IDD = IDD_DIALOG1 };
  12. public:
  13. CString GetInput();
  14. protected:
  15. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  16. DECLARE_MESSAGE_MAP()
  17. public:
  18. afx_msg void OnBnClickedOk();
  19. private:
  20. // 物理输入
  21. CEdit m_input;
  22. CString m_strInput;
  23. };