⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex04_formview.h

📁 华东理工大学李英所著《Visual C++编程与项目开发》的源代码。 本书简明扼要
💻 H
字号:
#if !defined(AFX_EX04_FORMVIEW_H__4DAA34A9_D0C3_4D49_AEE8_3BD3AD12700E__INCLUDED_)
#define AFX_EX04_FORMVIEW_H__4DAA34A9_D0C3_4D49_AEE8_3BD3AD12700E__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Ex04_FormView.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CEx04_FormView form view

#ifndef __AFXEXT_H__
#include <afxext.h>
#endif
#include "Ex04_3Doc.h"
class CEx04_FormView : public CFormView
{
protected:
	CEx04_FormView();           // protected constructor used by dynamic creation
	DECLARE_DYNCREATE(CEx04_FormView)

// Form Data
public:
	//{{AFX_DATA(CEx04_FormView)
	enum { IDD = IDD_EX04_FORMVIEW_FORM };
	int		m_X0;
	int		m_X1;
	int		m_Y0;
	int		m_Y1;
	//}}AFX_DATA

// Attributes
public:

// Operations
public:
CEx04_3Doc* GetDocument();
// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CEx04_FormView)
	public:
	virtual void OnInitialUpdate();
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	virtual ~CEx04_FormView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

	// Generated message map functions
	//{{AFX_MSG(CEx04_FormView)
	afx_msg void OnButtonOk();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_EX04_FORMVIEW_H__4DAA34A9_D0C3_4D49_AEE8_3BD3AD12700E__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -