Aracılığıyla paylaş


DataGridDesigner.GetErrorDesignTimeHtml(Exception) Yöntem

Tanım

Denetim işlenirken bir hatayla karşılaşıldığında belirtilen özel durum için tasarım zamanında görüntülenen HTML işaretlemesini alır.

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

Parametreler

e
Exception

Oluşan özel durum.

Döndürülenler

Belirtilen özel durum için tasarım zamanında görüntülenen HTML işaretlemesi.

Örnekler

Aşağıdaki kod örneği, bir özel durum oluştuğunda denetimin DataGrid tasarım yüzeyindeki görünümünü değiştirmek için yönteminin nasıl geçersiz kılınması GetErrorDesignTimeHtml gösterilmektedir.

Bu kod örneği, sınıfı için DataGridDesigner sağlanan daha büyük bir örneğin parçasıdır.

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

Şunlara uygulanır

Ayrıca bkz.