ListViewCancelEventArgs.ItemIndex 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이벤트를 발생시킨 취소 단추가 들어 있는 항목의 인덱스를 가져옵니다.
public:
property int ItemIndex { int get(); };
public int ItemIndex { get; }
member this.ItemIndex : int
Public ReadOnly Property ItemIndex As Integer
속성 값
이벤트를 발생시킨 취소 단추가 들어 있는 항목의 인덱스(0부터 시작)입니다.
예제
다음 예제에서는 사용 하는 방법을 보여 줍니다는 ItemIndex 속성을 사용자가 클릭 한 취소 단추를 포함 하는 편집 항목의 인덱스를 확인 합니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 ListViewCancelEventArgs 클래스입니다.
protected void ContactsListView_ItemCanceling(object sender, ListViewCancelEventArgs e)
{
//Check the operation that raised the event
if (e.CancelMode == ListViewCancelMode.CancelingEdit)
{
// The update operation was canceled. Display the
// primary key of the item.
Message.Text = "Update for the ContactID " +
ContactsListView.DataKeys[e.ItemIndex].Value.ToString() + " canceled.";
}
else
{
Message.Text = "Insert operation canceled.";
}
}
Protected Sub ContactsListView_ItemCanceling(ByVal sender As Object, _
ByVal e As ListViewCancelEventArgs)
'Check the operation that raised the event
If (e.CancelMode = ListViewCancelMode.CancelingEdit) Then
' The update operation was canceled. Display the
' primary key of the item.
Message.Text = "Update for the ContactID " & _
ContactsListView.DataKeys(e.ItemIndex).Value.ToString() & " canceled."
Else
Message.Text = "Insert operation canceled."
End If
End Sub
설명
사용 된 ItemIndex 취소 단추가 들어 있는 항목의 인덱스를 확인 하는 속성은 사용자가 클릭 합니다. 항목 인덱스에서 항목을 검색 하는 대개 합니다 Items 의 컬렉션을 ListView 컨트롤 항목의 속성에 액세스할 수 있습니다.
경우는 CancelMode 속성이로 설정 되어 ListViewCancelMode.CancelingInsert
의 값은 ItemIndex 속성은 항상-1입니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET