次の方法で共有


LoginViewDesigner.GetErrorDesignTimeHtml(Exception) メソッド

定義

エラーが発生した場合に、関連付けられたコントロールをデザイン時表示するためのマークアップを提供します。

protected:
 override System::String ^ GetErrorDesignTimeHtml(Exception ^ e);
protected override string GetErrorDesignTimeHtml (Exception e);
override this.GetErrorDesignTimeHtml : Exception -> string
Protected Overrides Function GetErrorDesignTimeHtml (e As Exception) As String

パラメーター

e
Exception

スローされた Exception

戻り値

String

エラーが発生した後で、関連付けられた LoginView のデザイン時表示に使用するマークアップを含んだ文字列。

次のコード例は、クラスから継承されたクラス内のメソッドをオーバーライド GetErrorDesignTimeHtml して、デザイン時にクラスから LoginViewDesigner 派生したコントロールの外観を変更する方法を LoginView 示しています。 この例では、エラー メッセージを含むプレースホルダーのマークアップを生成します。このマークアップは、赤い太字のテキストで表示されます。

// Generate the design-time markup for the control when an error occurs.
protected override string GetErrorDesignTimeHtml(Exception ex) 
{
    // Write the error message text in red, bold.
    string errorRendering =
        "<span style=\"font-weight:bold; color:Red; \">" +
        ex.Message + "</span>";

    return CreatePlaceHolderDesignTimeHtml(errorRendering);
} // GetErrorDesignTimeHtml
' Generate the design-time markup for the control when an error occurs.
Protected Overrides Function GetErrorDesignTimeHtml( _
    ByVal ex As Exception) As String

    ' Write the error message text in red, bold.
    Dim errorRendering As String = _
        "<span style=""font-weight:bold; color:Red; "">" & _
        ex.Message & "</span>"

    Return CreatePlaceHolderDesignTimeHtml(errorRendering)

End Function ' GetErrorDesignTimeHtml

注釈

エラーデザイン時 LoginView コントロールは、型名、コントロール名、およびエラーを発表して説明するメッセージを含むパネルとしてレンダリングされます。

適用対象

こちらもご覧ください