Bagikan melalui


CheckBoxDesigner.GetDesignTimeHtml Metode

Definisi

Mendapatkan markup yang digunakan untuk mewakili kontrol pada waktu desain.

public:
 override System::String ^ GetDesignTimeHtml();
public override string GetDesignTimeHtml ();
override this.GetDesignTimeHtml : unit -> string
Public Overrides Function GetDesignTimeHtml () As String

Mengembalikan

Markup yang digunakan untuk mewakili kontrol pada waktu desain.

Contoh

Contoh kode berikut mengambil GetDesignTimeHtml alih metode . CheckBox.Text Jika properti belum diatur sebelumnya, panggilan ke metode ini mengaturnya ke string dan menampilkan string tersebut pada permukaan desain. Text Jika properti telah diatur, nilai properti yang ada akan ditampilkan.

' Override the GetDesignTimeHtml method to display a border on the 
' control if the BorderStyle property has not been set by the user.
Public Overrides Function GetDesignTimeHtml() As String

    Dim sampleCheckBox As SampleCheckBox = CType(Component, _
        SampleCheckBox)
    Dim designTimeHtml As String = Nothing

    ' Check the control's BorderStyle property.
    If (sampleCheckBox.BorderStyle = BorderStyle.NotSet) Then

        ' Save the current value of the BorderStyle property.
        Dim oldBorderStyle As BorderStyle = _
            sampleCheckBox.BorderStyle

        ' Change the value of the BorderStyle property and 
        ' generate the design-time HTML.
        Try
            sampleCheckBox.BorderStyle = BorderStyle.Groove
            designTimeHtml = MyBase.GetDesignTimeHtml()

            ' If an exception occurs, call the GetErrorDesignTimeHtml
            ' method.
        Catch ex As Exception
            designTimeHtml = GetErrorDesignTimeHtml(ex)

            ' Restore the BorderStyle property to its original value.
        Finally
            sampleCheckBox.BorderStyle = oldBorderStyle
        End Try

    Else
        designTimeHtml = MyBase.GetDesignTimeHtml()
    End If

    Return designTimeHtml
End Function

Keterangan

Text Jika properti kosong atau hanya terdiri dari spasi kosong, maka HTML yang dihasilkan berisi ID kontrol kotak centang; jika tidak, HTML yang dihasilkan berisi konten properti kontrolText.

Ambil alih metode ini untuk mengubah HTML yang dihasilkan.

Berlaku untuk

Lihat juga