提交 | 用户 | age
|
418cb3
|
1 |
#pragma once
|
Q |
2 |
|
|
3 |
|
|
4 |
|
|
5 |
// CMTerm1BnlView 视图
|
|
6 |
|
61deef
|
7 |
class CMTerm1BnlView : public CFormView
|
418cb3
|
8 |
{
|
Q |
9 |
DECLARE_DYNCREATE(CMTerm1BnlView)
|
|
10 |
|
|
11 |
protected:
|
|
12 |
CMTerm1BnlView(); // 动态创建所使用的受保护的构造函数
|
|
13 |
virtual ~CMTerm1BnlView();
|
|
14 |
|
|
15 |
public:
|
61deef
|
16 |
CMFCStatusBar* m_pStatusBar;
|
Q |
17 |
#ifdef AFX_DESIGN_TIME
|
|
18 |
enum { IDD = IDD_MTerm1BnlView };
|
|
19 |
#endif
|
418cb3
|
20 |
#ifdef _DEBUG
|
Q |
21 |
virtual void AssertValid() const;
|
|
22 |
#ifndef _WIN32_WCE
|
|
23 |
virtual void Dump(CDumpContext& dc) const;
|
|
24 |
#endif
|
|
25 |
#endif
|
|
26 |
|
|
27 |
protected:
|
61deef
|
28 |
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
418cb3
|
29 |
virtual void OnDraw(CDC* pDC); // 重写以绘制该视图
|
61deef
|
30 |
// virtual void OnInitialUpdate(); // 构造后的第一次
|
418cb3
|
31 |
|
Q |
32 |
DECLARE_MESSAGE_MAP()
|
61deef
|
33 |
public:
|
Q |
34 |
virtual void OnInitialUpdate();
|
|
35 |
afx_msg void OnBnClickedButtonLoad();
|
|
36 |
afx_msg void OnBnClickedButtonSave();
|
|
37 |
afx_msg void OnBnClickedButtonConvert();
|
|
38 |
afx_msg void OnBnClickedButtonTrnsTotxt();
|
|
39 |
afx_msg void OnBnClickedButtonTrnsPrg();
|
|
40 |
virtual void OnUpdate(CView* /*pSender*/, LPARAM /*lHint*/, CObject* /*pHint*/);
|
|
41 |
afx_msg void OnBnClickedButton4();
|
|
42 |
afx_msg void OnSize(UINT nType, int cx, int cy);
|
418cb3
|
43 |
};
|
Q |
44 |
|
|
45 |
|