ListViewUpdatedEventArgs.AffectedRows 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取受更新操作影响的行数。
public:
property int AffectedRows { int get(); };
public int AffectedRows { get; }
member this.AffectedRows : int
Public ReadOnly Property AffectedRows As Integer
属性值
受更新操作影响的行数。
示例
以下示例演示如何使用 AffectedRows 属性验证项是否已更新。 此代码示例是为 ListViewUpdatedEventArgs 类提供的一个更大示例的一部分。
void ContactsListView_ItemUpdated(Object sender, ListViewUpdatedEventArgs e)
{
if (e.Exception != null)
{
if (e.AffectedRows == 0)
{
e.KeepInEditMode = true;
Message.Text = "An exception occurred updating the contact. " +
"Please verify your values and try again.";
}
else
Message.Text = "An exception occurred updating the contact. " +
"Please verify the values in the recently updated item.";
e.ExceptionHandled = true;
}
}
Sub ContactsListView_ItemUpdated(sender As Object, e As ListViewUpdatedEventArgs)
If e.Exception IsNot Nothing Then
If e.AffectedRows = 0 Then
e.KeepInEditMode = True
Message.Text = "An exception occurred updating the contact. " & _
"Please verify your values and try again."
Else
Message.Text = "An exception occurred updating the contact. " & _
"Please verify the values in the recently updated item."
End If
e.ExceptionHandled = True
End If
End Sub
注解
AffectedRows使用 属性确定受更新操作影响的行数,如数据源返回的那样。 由于通常只更新一项,因此此属性通常包含值 0 或 1。
有时,在更新操作期间可能会发生不引发异常的错误。 在这种情况下, AffectedRows 属性可用于验证项是否已更新。