ListViewCancelEventArgs.ItemIndex 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得包含引發事件之 [取消] 按鈕的項目索引。
public:
property int ItemIndex { int get(); };
public int ItemIndex { get; }
member this.ItemIndex : int
Public ReadOnly Property ItemIndex As Integer
屬性值
包含引發事件之 [取消] 按鈕的項目以零起始的索引。
範例
下列範例示範如何使用 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。