得到ClistCtrl中當前選中的項

來源:互聯網
上載者:User

int GetSelectionMark( );

Return Value

The zero-based selection mark, or -1 if there is no selection mark.

Remarks

This member function implements the behavior of the Win32 macro,ListView_GetSelectionMark, as described in the Platform SDK.

這個是我以前一直用的,不過這個函數有個缺點,他會保留你上次選中的項,所以當你單擊空白的地方時,他還會返回上次選中的項.

int GetNextItem( int nItem, int nFlags ) const;

Return Value

The index of the next item if successful, or -1 otherwise.

Parameters

nItem

Index of the item to begin the searching with, or -1 to find the first item that matches the specified flags. The specified item itself is excluded from the search.

nFlags

Geometric relation of the requested item to the specified item, and the state of the requested item. The geometric relation can be one of these values:

  • LVNI_ABOVE   Searches for an item that is above the specified item.

  • LVNI_ALL   Searches for a subsequent item by index (the default value).
  • LVNI_BELOW   Searches for an item that is below the specified item.
  • LVNI_TOLEFT   Searches for an item to the left of the specified item.
  • LVNI_TORIGHT   Searches for an item to the right of the specified item.

The state can be zero, or it can be one or more of these values:

  • LVNI_DROPHILITED   The item has the LVIS_DROPHILITED state flag set.

  • LVNI_FOCUSED   The item has the LVIS_FOCUSED state flag set.
  • LVNI_SELECTED   The item has the LVIS_SELECTED state flag set.

    If an item does not have all of the specified state flags set, the search continues with the next item.

Remarks

Searches for a list view item that has the specified properties and that bears the specified relationship to a given item.

使用這個函數也可以得到當前選中的項,不過要設定參數.

int iPos = m_cList.GetNextItem( -1, LVNI_ALL | LVNI_SELECTED);

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.