LoginViewDesigner.GetErrorDesignTimeHtml(Exception) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
エラーが発生した場合に、関連付けられたコントロールをデザイン時表示するためのマークアップを提供します。
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
パラメーター
戻り値
エラーが発生した後で、関連付けられた 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 コントロールは、型名、コントロール名、およびエラーを発表して説明するメッセージを含むパネルとしてレンダリングされます。