uiedit.h
来自「开发环境为EVC++,这个是一个我的一个简单的拨号程序,是通过串口接的GPRS模」· C头文件 代码 · 共 28 行
H
28 行
////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _UIEDIT_H
#define _UIEDIT_H
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
class CUIEdit : public CEdit
{
public:
CUIEdit();
~CUIEdit();
// Call this to create the template with given caption and prompt.
protected:
afx_msg void OnSetfocus(CWnd* pOldWnd);
afx_msg void OnKillfocus(CWnd* pNewWnd);
DECLARE_MESSAGE_MAP()
private:
DWORD m_dwthisID;
public:
void Init(const RECT& rect, CWnd* pParentWnd, DWORD dwID,DWORD *dwParam=NULL);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?