ListViewDataItem.DisplayIndex 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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 컬렉션입니다.
참고
이 속성은 데이터 항목에만 적용 됩니다. 항목이 나 빈 항목을 삽입 하는 적용 되지 않습니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET