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

📄 controlexampleview.h

📁 控件的使用源代码。打开后可实现控件的应用 。
💻 H
字号:
// ControlExampleView.h : interface of the CControlExampleView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_CONTROLEXAMPLEVIEW_H__DCAC50D8_3E55_48B2_A9B2_DFF7E047A9CB__INCLUDED_)
#define AFX_CONTROLEXAMPLEVIEW_H__DCAC50D8_3E55_48B2_A9B2_DFF7E047A9CB__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CControlExampleView : public CView
{
protected: // create from serialization only
	CControlExampleView();
	DECLARE_DYNCREATE(CControlExampleView)

// Attributes
public:
	CControlExampleDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CControlExampleView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	//}}AFX_VIRTUAL

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

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CControlExampleView)
	afx_msg void OnEdittest();
	afx_msg void OnCombo();
	afx_msg void OnRadiocheck();
	afx_msg void OnList();
	afx_msg void OnScroll();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in ControlExampleView.cpp
inline CControlExampleDoc* CControlExampleView::GetDocument()
   { return (CControlExampleDoc*)m_pDocument; }
#endif

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

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

#endif // !defined(AFX_CONTROLEXAMPLEVIEW_H__DCAC50D8_3E55_48B2_A9B2_DFF7E047A9CB__INCLUDED_)

⌨️ 快捷键说明

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