Udostępnij za pośrednictwem


DataGridDesigner.GetErrorDesignTimeHtml(Exception) Metoda

Definicja

Pobiera znaczniki HTML wyświetlane w czasie projektowania dla określonego wyjątku, gdy wystąpił błąd podczas renderowania kontrolki.

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

Parametry

e
Exception

Wyjątek, który wystąpił.

Zwraca

Znaczniki HTML wyświetlane w czasie projektowania dla określonego wyjątku.

Przykłady

Poniższy przykład kodu pokazuje, jak zastąpić metodę GetErrorDesignTimeHtml w celu zmodyfikowania wyglądu DataGrid kontrolki na powierzchni projektowej po wystąpieniu wyjątku.

Ten przykład kodu jest częścią większego przykładu udostępnionego DataGridDesigner dla klasy .

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

Dotyczy

Zobacz też