다음을 통해 공유


CheckBoxDesigner.GetDesignTimeHtml 메서드

정의

디자인 타임에 컨트롤을 나타내는 데 사용되는 태그를 가져옵니다.

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

반환

디자인 타임에 컨트롤을 나타내는 데 사용되는 태그를 반환합니다.

예제

다음 코드 예제에서는 재정의 GetDesignTimeHtml 메서드. 경우는 CheckBox.Text 속성이 이전에 설정 되지 않은,이 메서드를 호출 하는 문자열을 설정 및 디자인 화면에서 해당 문자열을 표시 합니다. 경우는 Text 속성이 이미 설정 되었는지, 기존 속성 값이 표시 됩니다.

' 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

설명

경우는 Text 생성 된 HTML을 포함 하는 다음에 속성이 비어 있거나 공백만 구성 합니다 ID 확인란 컨트롤 그렇지 않으면 생성 된 HTML에 컨트롤의 내용을 Text 속성입니다.

생성 된 HTML을 변경 하려면이 메서드를 재정의 합니다.

적용 대상

추가 정보