engmodeexview.h

来自「wince中工程模式用来测试硬件的驱动是否好用」· C头文件 代码 · 共 58 行

H
58
字号
// EngModeExView.h : CEngModeExView 类的接口
//


#pragma once

class CEngModeExView : public CListView
{
protected: // 仅从序列化创建
	CEngModeExView();
	DECLARE_DYNCREATE(CEngModeExView)

// 属性
public:
	CEngModeExDoc* GetDocument() const;

// 操作
public:

// 重写
public:
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);

protected:
	virtual void OnInitialUpdate(); // 构造后第一次调用

// 实现
public:
	virtual ~CEngModeExView();
#ifdef _DEBUG
	virtual void AssertValid() const;
#endif

protected:

// 生成的消息映射函数
protected:
	DECLARE_MESSAGE_MAP()
private:
	myFunType curFunType;
private:
	void executeSelFun();
	CImageList ImageList;

public:
	afx_msg void OnSysteminfo();
	afx_msg void OnEngmode();
	afx_msg void OnDebug();
	afx_msg void OnNMClick(NMHDR *pNMHDR, LRESULT *pResult);
	afx_msg void OnDestroy();
};

#ifndef _DEBUG  // EngModeExView.cpp 中的调试版本
inline CEngModeExDoc* CEngModeExView::GetDocument() const
   { return reinterpret_cast<CEngModeExDoc*>(m_pDocument); }
#endif

⌨️ 快捷键说明

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