PanelContainerDesigner.FrameCaption 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
연결된 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 컨트롤.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET