ListViewInsertedEventArgs.ExceptionHandled 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出是否在事件處理常式中處理插入作業中引發的例外狀況。
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
。
範例
下列範例示範如何使用 ListViewInsertedEventArgs 傳遞至 事件處理程序 ItemInserted 的物件,以判斷插入作業期間是否引發例外狀況。 此程式代碼範例是提供給 類別之較大範例的 ListViewInsertedEventArgs 一部分。
void ContactsListView_ItemInserted(Object sender, ListViewInsertedEventArgs e)
{
if (e.Exception != null)
{
if (e.AffectedRows == 0)
{
e.KeepInInsertMode = true;
Message.Text = "An exception occurred inserting the new Contact. " +
"Please verify your values and try again.";
}
else
Message.Text = "An exception occurred inserting the new Contact. " +
"Please verify the values in the newly inserted item.";
e.ExceptionHandled = true;
}
}
Sub ContactsListView_ItemInserted(ByVal sender As Object, ByVal e As ListViewInsertedEventArgs)
If e.Exception IsNot Nothing Then
If e.AffectedRows = 0 Then
e.KeepInInsertMode = True
Message.Text = "An exception occurred inserting the new Contact. " & _
"Please verify your values and try again."
Else
Message.Text = "An exception occurred inserting the new Contact. " & _
"Please verify the values in the newly inserted item."
End If
e.ExceptionHandled = True
End If
End Sub
備註
在插入作業期間引發例外狀況時,請使用 ExceptionHandled 屬性來指出是否在事件處理程式中處理例外狀況。 當這個屬性設定為 true
時,例外狀況會被視為已處理且不會重新擲回。 如果這個屬性設定為 false
,控件 ListView 會重新擲回例外狀況。 若要判斷引發的例外狀況,請使用 Exception 屬性。