다음을 통해 공유


ListViewDataItem.DisplayIndex 속성

정의

ListView 컨트롤에 표시되는 데이터 항목의 위치를 가져옵니다.

public:
 virtual property int DisplayIndex { int get(); };
public virtual int DisplayIndex { get; }
public override int DisplayIndex { get; }
member this.DisplayIndex : int
Public Overridable ReadOnly Property DisplayIndex As Integer
Public Overrides ReadOnly Property DisplayIndex As Integer

속성 값

ListView 컨트롤에 표시되는 데이터 항목의 위치(0부터 시작)입니다.

구현

예제

다음 예제에서는 사용 하는 방법의 DisplayIndex 편집 중인 항목의 인덱스를 검색 하는 속성입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 ListView.UpdateItem 메서드.

protected void PreferredCheckBox_CheckedChanged(object sender, EventArgs e)
{
  // Gets the CheckBox object that fired the event.
  CheckBox chkBox = (CheckBox) sender;

  // Gets the item that contains the CheckBox object. 
  ListViewDataItem item = (ListViewDataItem) chkBox.Parent.Parent;
  
  // Update the database with the changes.
  VendorsListView.UpdateItem(item.DisplayIndex, false);
}
Protected Sub PreferredCheckBox_CheckedChanged(ByVal sender As Object, ByVal e As EventArgs) 

  ' Gets the CheckBox object that fired the event.
  Dim chkBox As CheckBox = CType(sender, CheckBox)
  
  ' Gets the item that contains the CheckBox object. 
  Dim item As ListViewDataItem = CType(chkBox.Parent.Parent, ListViewDataItem)
  
  ' Update the database with the changes.
  VendorsListView.UpdateItem(item.DisplayIndex, False)    

End Sub

설명

합니다 DisplayIndex 속성에 표시 된 항목의 현재 위치에 해당 합니다 ListView 컨트롤입니다. 각 항목의 DisplayIndex 값은 데이터의 해당 특정 페이지에서 컨트롤에 추가 된 순서를 반영 합니다. 사용할 수는 DisplayIndex 검색할 속성을 ListViewDataItem 개체는 Items 컬렉션입니다.

참고

이 속성은 데이터 항목에만 적용 됩니다. 항목이 나 빈 항목을 삽입 하는 적용 되지 않습니다.

적용 대상

추가 정보