LiftControl.h
上传用户:jmteguang
上传日期:2022-05-24
资源大小:61k
文件大小:0k
源码类别:

进程与线程

开发平台:

Visual C++

  1. #pragma once
  2. #include "stdafx.h"
  3. // CLiftControl
  4. class CLiftControl : public CButton
  5. {
  6. DECLARE_DYNAMIC(CLiftControl)
  7. public:
  8. CLiftControl();
  9. virtual ~CLiftControl();
  10. afx_msg void OnBnClicked();
  11. void SetAllNum(int temp);
  12. void SetButtonNum(int temp);
  13. lift GetLiftInfo();
  14. private:
  15. lift liftInfo;
  16. protected:
  17. DECLARE_MESSAGE_MAP()
  18. };