ListViewInsertedEventArgs.ExceptionHandled Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta un valore che indica se un'eccezione generata durante l'operazione di inserimento è stata gestita nel gestore eventi.
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
Valore della proprietà
true
se l'eccezione è stata gestita nel gestore eventi, altrimenti false
. Il valore predefinito è false
.
Esempio
Nell'esempio seguente viene illustrato come usare l'oggetto ListViewInsertedEventArgs passato al gestore per l'evento per determinare se è stata generata un'eccezione durante l'operazione ItemInserted di inserimento. Questo esempio di codice fa parte di un esempio più grande fornito per la ListViewInsertedEventArgs classe.
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
Commenti
Quando viene generata un'eccezione durante l'operazione di inserimento, utilizzare la ExceptionHandled proprietà per indicare se l'eccezione è stata gestita nel gestore eventi. Quando questa proprietà è impostata su true
, l'eccezione viene considerata gestita e non viene generata nuovamente. Se questa proprietà è impostata su false
, il ListView controllo genera nuovamente l'eccezione. Per determinare quale eccezione è stata generata, usare la Exception proprietà .