subject_17012.htm
来自「一些关于vc的问答」· HTM 代码 · 共 9 行
HTM
9 行
<p>
序号:17012 发表者:小年 发表日期:2002-10-07 13:50:29
<br>主题:我想查CTreeCtrl中的GetNextItem(HTREEITEM hItem, unsigned int nCod
<br>内容:我想查CTreeCtrl中的GetNextItem(HTREEITEM hItem, unsigned int nCode),nCode有那几种值,它的#define 列出来;
<br><a href="javascript:history.go(-1)">返回上页</a><br><a href=http://www.copathway.com/cndevforum/>访问论坛</a></p>
<hr size=1>
<blockquote><p>
<font color=red>答案被接受</font><br>回复者:Norton AntivVirus 回复日期:2002-10-07 14:03:15
<br>内容:TVGN_CARET Retrieves the currently selected item.<BR>TVGN_CHILD Retrieves the first child item. The hItem parameter must be NULL.<BR>TVGN_DROPHILITE Retrieves the item that is the target of a drag-and-drop operation.<BR>TVGN_FIRSTVISIBLE Retrieves the first visible item.<BR>TVGN_NEXT Retrieves the next sibling item.<BR>TVGN_NEXTVISIBLE Retrieves the next visible item that follows the specified item.<BR>TVGN_PARENT Retrieves the parent of the specified item.<BR>TVGN_PREVIOUS Retrieves the previous sibling item.<BR>TVGN_PREVIOUSVISIBLE Retrieves the first visible item that precedes the specified item.<BR>TVGN_ROOT Retrieves the first child item of the root item of which the specified item is a part. <BR><BR><BR>#define TVGN_ROOT 0x0000<BR>#define TVGN_NEXT 0x0001<BR>#define TVGN_PREVIOUS 0x0002<BR>#define TVGN_PARENT 0x0003<BR>#define TVGN_CHILD 0x0004<BR>#define TVGN_FIRSTVISIBLE 0x0005<BR>#define TVGN_NEXTVISIBLE 0x0006<BR>#define TVGN_PREVIOUSVISIBLE 0x0007<BR>#define TVGN_DROPHILITE 0x0008<BR>#define TVGN_CARET 0x0009<BR>#if (_WIN32_IE >= 0x0400)<BR>#define TVGN_LASTVISIBLE 0x000A<BR>#endif // _WIN32_IE >= 0x0400<BR><BR>define in CommCtrl.h<BR><BR>2002-10-7 14:04:55
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?