ListViewUpdatedEventArgs.ExceptionHandled 属性

定义

获取或设置一个值,该值指示是否在事件期间处理了更新操作过程中引发的异常。

public:
 property bool ExceptionHandled { bool get(); void set(bool value); };
public bool ExceptionHandled { get; set; }
member this.ExceptionHandled : bool with get, set
Public Property ExceptionHandled As Boolean

属性值

如果异常已在事件处理程序中得到处理,则为 true;否则为 false。 默认值为 false

示例

以下示例演示如何使用 ExceptionHandled 属性来指示在事件处理程序中处理了异常。 此代码示例是为 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

注解

如果在更新操作期间引发异常,请使用 ExceptionHandled 属性指示是否在事件期间处理了异常。 如果此属性设置为 true,则会将异常视为已处理,并且不会由 ListView 控件重新引发。 如果此属性设置为 false,则 ListView 控件将重新引发异常。 若要确定引发的异常,请使用 Exception 属性。

适用于

另请参阅