messageview.h

来自「UHF RFID Reader Program」· C头文件 代码 · 共 38 行

H
38
字号
#pragma once


// CMessageView view

class CMessageView : public CView
{
	DECLARE_DYNCREATE(CMessageView)

protected:
	CMessageView();           // protected constructor used by dynamic creation
	virtual ~CMessageView();

public:
#ifdef _DEBUG
	virtual void AssertValid() const;
#ifndef _WIN32_WCE
	virtual void Dump(CDumpContext& dc) const;
#endif
#endif
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view

protected:
	DECLARE_MESSAGE_MAP()
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnSize(UINT nType, int cx, int cy);

// Attributes
public:
	CEdit m_wndEdit;
// Operations
public:
	CEdit* GetEditCtrl();
	void TextOut(LPCTSTR lpszText);
};


⌨️ 快捷键说明

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