BindingManagerDataErrorEventArgs.Exception プロパティ

定義

Exception イベント発生の原因となった、バインディング処理でキャッチされた DataError を取得します。

public:
 property Exception ^ Exception { Exception ^ get(); };
public Exception Exception { get; }
member this.Exception : Exception
Public ReadOnly Property Exception As Exception

プロパティ値

Exception イベント発生の原因となった DataError

次のコード例では、このメンバーの使用方法を示します。 この例では、イベント ハンドラーがイベントの BindingManagerBase.DataError 発生を報告します。 このレポートは、イベントが発生したタイミングを確認するのに役立ち、デバッグに役立ちます。 複数のイベントまたは頻繁に発生するイベントを報告するには、 を Console.WriteLine に置き換えるかMessageBox.Show、複数行TextBoxにメッセージを追加することを検討してください。

コード例を実行するには、 や CurrencyManagerなどの をBindingManagerBase継承する型のインスタンスを含むプロジェクトにPropertyManager貼り付けます。 次に、インスタンス BindingManagerBase1 に名前を付け、イベント ハンドラーがイベントに BindingManagerBase.DataError 関連付けられていることを確認します。

private void BindingManagerBase1_DataError(Object sender, BindingManagerDataErrorEventArgs e) {
    System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
    messageBoxCS.AppendFormat("{0} = {1}", "Exception", e.Exception);
    messageBoxCS.AppendLine();
    MessageBox.Show(messageBoxCS.ToString(), "DataError Event");
}
Private Sub BindingManagerBase1_DataError(sender as Object, e as BindingManagerDataErrorEventArgs) _ 
     Handles BindingManagerBase1.DataError

    Dim messageBoxVB as New System.Text.StringBuilder()
    messageBoxVB.AppendFormat("{0} = {1}", "Exception", e.Exception)
    messageBoxVB.AppendLine()
    MessageBox.Show(messageBoxVB.ToString(),"DataError Event")

End Sub

適用対象