ListViewInsertedEventArgs.ExceptionHandled プロパティ

定義

挿入操作中に発生した例外がイベント ハンドラーで処理されたかどうかを示す値を取得または設定します。

public bool ExceptionHandled { get; set; }

プロパティ値

イベント ハンドラーで例外が処理された場合は 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;
  }
}

注釈

挿入操作中に例外が発生した場合は、 プロパティを ExceptionHandled 使用して、例外がイベント ハンドラーで処理されたかどうかを示します。 このプロパティが に true設定されている場合、例外は処理されたものと見なされ、再スローされません。 このプロパティが に false設定されている場合、コントロールは ListView 例外を再スローします。 発生した例外を確認するには、 プロパティを使用します Exception

適用対象

製品 バージョン
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

こちらもご覧ください