zxd
2023-10-21 89cd7441c184d37f90d4d5311b348e938119765f
提交 | 用户 | age
0ed438 1 #pragma once
Q 2
3
4
5 // CMTerm2CtrlView 窗体视图
6
7 class CMTerm2CtrlView : public CFormView
8 {
9     DECLARE_DYNCREATE(CMTerm2CtrlView)
10
11 protected:
12     CMTerm2CtrlView();           // 动态创建所使用的受保护的构造函数
13     virtual ~CMTerm2CtrlView();
14
15 public:
16 //    CMTerm2Doc* GetDocument() const;
b978bf 17     CStatusBar * m_pStatusBar;
0ed438 18 #ifdef AFX_DESIGN_TIME
Q 19     enum { IDD = IDD_MTerm2CtrlView };
20 #endif
21 #ifdef _DEBUG
22     virtual void AssertValid() const;
23 #ifndef _WIN32_WCE
24     virtual void Dump(CDumpContext& dc) const;
25 #endif
26 #endif
27
28 protected:
29     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
30
31     DECLARE_MESSAGE_MAP()
32 public:
33     virtual void OnInitialUpdate();
34     afx_msg void OnBnClickedButtonLoad();
35     afx_msg void OnBnClickedButtonSave();
36     afx_msg void OnBnClickedButtonConvert();
37     afx_msg void OnBnClickedButtonTrnsTotxt();
38     afx_msg void OnBnClickedButtonTrnsPrg();
39     virtual void OnUpdate(CView* /*pSender*/, LPARAM /*lHint*/, CObject* /*pHint*/);
40     afx_msg void OnBnClickedButton4();
41 };
42
43