- 1、本文档共38页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第11章 制作含编辑框的应用程序
编辑框在Windows风格的应用程序中是随处可见的,当
需要获得来自用户的文本信息,或者要让用户输入或
编辑文本时,应该使用编辑控件。
编辑框控件
单行编辑框控件
多行编辑框控件
11.1 编辑框控件简介
编辑框控件具有许多功能,Windows中的
记事本(Notepad)应用程序就是一个带有控件
菜单的编辑控件。
编辑框控件类CEdit的结构很复杂,当创建CEdit对象时,
MFC自动赋予该对象一个标准的Windows编辑控件,它定
义了CEdit对象。
Afxwin.h
class CEdit : public CWnd
{ DECLARE_DYNAMIC(CEdit)
// 定义构造函数
public:
CEdit();
BOOLCreate(DWORD dwStyle, const RECT rect, CWnd*
pParentWnd, UINT nID);
// 定义成员函数
BOOLCanUndo() const;
int GetLineCount() const;
BOOLGetModify() const;
void SetModify(BOOLbModified = TRUE);
void GetRect(LPRECT lpRect) const;
DWORD GetSel() const;
void GetSel(int nStartChar, int nEndChar) const;
HLOCALGetHandle() const;
void SetHandle(HLOCALhBuffer);
#if (WINVER = 0x400)
void SetMargins(UINT nLeft, UINT nRight);
DWORD GetMargins() const;
void SetLimitText(UINT nMax);
UINT GetLimitText() const;
CPoint PosFromChar(UINT nChar) const;
int CharFromPos(CPoint pt) const;
#endif
// NOTE: first word in lpszBuffer must contain the size of the buffer!
int GetLine(int nIndex, LPTSTR lpszBuffer) const;
int GetLine(int nIndex, LPTSTR lpszBuffer, int nMaxLength) const;
// 操作
void EmptyUndoBuffer();
BOOLFmtLines(BOOLbAddEOL);
void LimitText(int nChars = 0);
int LineFromChar(int nIndex = -1) const;
int LineIndex(int nLine = -1) const;
int LineLength(int nLine = -1) const;
void LineScroll(int nLines, int nChars = 0);
void ReplaceSel(LPCTSTR lpszNewText, BOOLbCanUndo = FALSE);
void SetPasswordChar(TCHAR ch);
void SetRect(LPCRECT lpRect);
void SetRectNP(LPCRECT lpRect);
void SetSel(DWORD dwSelection, BOOLbNoScroll = FALSE);
void SetSel(int nStartChar, int nEndChar, BOOLbNoScroll = FALSE);
BOOLSetTabStops(int nTabStops, LPINT rgTabStops);
void SetTabStops();
BOOLSetTabStops(const int cxEachStop); // takes an int
// 剪贴板操作
BOOLUndo();
void Clear();
void Copy();
void Cut();
void Paste();
BOOLSetReadOnly(BOOLbReadOnly = TRUE);
int GetFirstVisibleLine() const;
TCHAR GetPasswordChar() const;
// Implementation
public:
virtual ~CEdit(); //虚拟析构函数
};
方法
说明
文档评论(0)