次の方法で共有


DataGridDesigner.GetErrorDesignTimeHtml(Exception) メソッド

定義

デザイン時において、コントロールの表示中にエラーが発生した場合に指定した例外を表示する HTML マークアップを取得します。

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

発生した例外。

戻り値

デザイン時に指定した例外を表示する HTML マークアップ。

次のコード例は、 メソッドを GetErrorDesignTimeHtml オーバーライドして、例外が発生したときにデザインサーフェイス上のコントロールの DataGrid 外観を変更する方法を示しています。

このコード例は、DataGridDesigner クラスのために提供されている大規模な例の一部です。

Protected Overrides Function GetEmptyDesignTimeHtml() As String
    Dim emptyText As String

    ' Check the CanEnterTemplateMode property to
    ' specify which text to display if ItemTemplate 
    ' does not contain a value.
    If CanEnterTemplateMode Then
        emptyText = _
            "<b>Either the Enabled property value is false " + _
            "or you need to set the ItemTemplate for this " + _
            "control.<br>Right-click to edit templates.</b>"
    Else
        emptyText = _
            "<b>You cannot edit templates in this view.<br>" + _
            "Switch to HTML view to define the ItemTemplate.</b>"
    End If

    Return CreatePlaceHolderDesignTimeHtml(emptyText)
End Function

適用対象

こちらもご覧ください