次の方法で共有


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

注釈

プロパティは FrameCaptionGroupingText 関連付けられた Panel コントロールの プロパティを返します。

適用対象

こちらもご覧ください