다음을 통해 공유


PanelContainerDesigner.FrameCaption 속성

정의

연결된 Panel 컨트롤에 나타나는 캡션을 가져옵니다.

public:
 virtual property System::String ^ FrameCaption { System::String ^ get(); };
public override string FrameCaption { get; }
member this.FrameCaption : string
Public Overrides ReadOnly Property FrameCaption As String

속성 값

패널 캡션이 포함된 문자열입니다.

예제

다음 코드 예제에서는 재정의 하는 방법을 보여 줍니다.는 FrameCaption 에서 상속 된 클래스의 속성에에서는 PanelContainerDesigner 클래스에서 파생 된 컨트롤의 모양을 변경 하는 Panel 디자인 타임에 클래스. 이 예제에서는 정의 되어 있지 않은 경우 연결된 된 컨트롤에 대 한 캡션을 기본을 제공 합니다.

// Provide a design-time caption for the panel.
public override string FrameCaption 
{
    get
    {
        // If the FrameCaption is empty, use the panel control ID.
        string localCaption = base.FrameCaption;
        if (localCaption == null || localCaption == "")
            localCaption = ((Panel)Component).ID.ToString();

        return localCaption;
    }
} // FrameCaption
' Provide a design-time caption for the panel.
Public Overrides ReadOnly Property FrameCaption() As String
    Get
        ' If the FrameCaption is empty, use the panel control ID.
        Dim localCaption As String = MyBase.FrameCaption
        If localCaption Is Nothing Or localCaption = "" Then
            localCaption = CType(Component, Panel).ID.ToString()
        End If

        Return localCaption
    End Get
End Property ' FrameCaption

설명

FrameCaption 속성에서 반환 된 GroupingText 속성은 연결 된 Panel 컨트롤.

적용 대상

추가 정보