MenuDesigner.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
參數
傳回
包含標記的字串,此標記可用來在設計階段發生錯誤之後呈現關聯的 Menu。
範例
下列程式代碼範例示範如何在繼承自 MenuDesigner 類別的類別中覆寫 GetErrorDesignTimeHtml 方法。 覆寫的方法會變更在設計時間衍生自 Menu 類別的控件外觀。 此範例會產生佔位元的標記,其中包含以紅色、粗體文字呈現的錯誤訊息。
// 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
備註
方法 GetErrorDesignTimeHtml 會產生標記,將錯誤設計時間 Menu 控件轉譯為佔位元元,其中包含類型名稱、控件名稱和描述錯誤的訊息。