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

📄 right16-2.htm

📁 Visual C++面向对象程序设计教程(配套习题资源)
💻 HTM
📖 第 1 页 / 共 2 页
字号:
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font size="2" color="#008000"><font LANG="ZH-CN">①</font> 
void GetWindowText( CString&amp; rString ) const;</font></p> 
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">②</font> 
int GetWindowTextLength( ) const;</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">③</font> 
void GetSel( int&amp; nStartChar, int&amp; nEndChar ) const;</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">④</font> 
int LineFromChar( int nIndex = –1 ) const;</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">⑤</font> 
int LineIndex( int nLine = –1 ) const;</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">⑥</font> 
int GetLineCount( ) const;</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">⑦</font> 
void SetWindowText( LPCTSTR lpszString );</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">⑧</font> 
void SetSel( int nStartChar, int nEndChar, BOOL bNoScroll = FALSE );</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">⑨</font> 
void ReplaceSel( LPCTSTR lpszNewText, BOOL bCanUndo = FALSE );</font></p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"> </p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font size="2">5.  
<font LANG="ZH-CN">滚动条控件</font></font></p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font LANG="ZH-CN" size="2">(1)滚动条控件的创建</font></p>
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font size="2">MFC<font LANG="ZH-CN">的</font>CScrollBar<font LANG="ZH-CN">类封装了滚动条控件,</font>CScrollBar<font LANG="ZH-CN">类的</font>Create<font LANG="ZH-CN">成员函数负责创建滚动条控件。</font></font></p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font LANG="ZH-CN" size="2">(2)  
主要成员函数</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">①</font> 
void GetScrollRange( LPINT lpMinPos, LPINT lpMaxPos ) const;</font></p> 
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">②</font> 
void SetScrollRange( int nMinPos, int nMaxPos, BOOL bRedraw = TRUE );</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">③</font> 
BOOL GetScrollInfo( LPSCROLLINFO lpScrollInfo, UINT nMask );</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">④</font> 
BOOL SetScrollInfo( LPSCROLLINFO lpScrollInfo, BOOL bRedraw = TRUE );</font></p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"> </p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font size="2">6/  
<font LANG="ZH-CN">列表框控件</font></font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font LANG="ZH-CN" size="2">列表框主要用于输入,它允许用户从所列出的表项中进行单项或多项选择,被选择的项呈高亮度显示。列表框分单选列表框和多重选择列表框两种。</font></p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font LANG="ZH-CN" size="2">(1)  
列表框控件的创建</font></p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font size="2">MFC<font LANG="ZH-CN">的</font>CListBox<font LANG="ZH-CN">类封装了列表框。</font>CListBox<font LANG="ZH-CN">类的</font>Create<font LANG="ZH-CN">成员函数负责列表框的创建。</font></font></p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font LANG="ZH-CN" size="2">(2)  
主要成员函数</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">①</font> 
int AddString( LPCTSTR lpszItem );</font></p> 
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">②</font> 
int InsertString( int nIndex, LPCTSTR lpszItem );</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">③</font> 
int DeleteString( UINT nIndex );</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">④</font> 
int FindString( int nStartAfter, LPCTSTR lpszItem ) const;</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">⑤</font> 
int GetCurSel( ) const;</font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2" color="#008000"><font LANG="ZH-CN">⑥</font> 
int SetCurSel( int nSelect );</font></p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"> </p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font size="2">7.  
<font LANG="ZH-CN">组合框控件</font></font></p>
<font SIZE="3">
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"></font><font size="2"><font LANG="ZH-CN">组合框把一个编辑框和一个单选择列表框结合在了一起。用户既可以在编辑框中输入,也可以从列表框中选择一个列表项来完成输入。</font></font></p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font LANG="ZH-CN" size="2">(1)  
组合框控件的创建</font></p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font size="2">MFC<font LANG="ZH-CN">的</font>CComboBox<font LANG="ZH-CN">类封装了组合框。</font>CComboBox<font LANG="ZH-CN">的成员函数</font>Create<font LANG="ZH-CN">负责创建组合框。</font></font></p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font LANG="ZH-CN" size="2">(2)  
主要成员函数</font></p>
<p ALIGN="JUSTIFY" style="line-height: 100%; margin-top: 0; margin-bottom: 0"><font size="2">CComboBox<font LANG="ZH-CN">类的成员函数较多,其中常用的函数可粗分为两类,分别针对编辑框组件和列表框组件。事实上,绝大部分</font>CComboBox<font LANG="ZH-CN">的成员函数都可以看成是</font>CEdit<font LANG="ZH-CN">或</font>CListBox<font LANG="ZH-CN">成员函数的翻版。函数功能、函数名,甚至函数的参数都是类似的。</font></font></p>
<p style="line-height: 100%; text-indent: 0; margin: 0" class="右标题" align="left"> </p>

<hr size="1" color="#008000">
<p style="line-height: 100%; margin-top: 0; margin-bottom: 0"> </p>            

<p style="line-height: 100%; margin-top: 0; margin-bottom: 0">&nbsp;&nbsp; <span style="position: absolute; left: 31; top: 1389"><a href="right16-1.htm" target="_self"><img border="0" src="rightd1.gif" width="113" height="70"></a></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;                                 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="position: absolute; left: 505; top: 1391"><a href="right16-3.htm" target="_self"><img border="0" src="rightd2.gif" width="124" height="63"></a></span></p>                    

</body>

</html>

⌨️ 快捷键说明

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