PanelContainerDesigner.FrameCaption Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la légende qui apparaît sur le contrôle Panel associé.
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
Valeur de propriété
Chaîne qui contient la légende du panneau.
Exemples
L’exemple de code suivant montre comment remplacer la FrameCaption propriété dans une classe héritée de la PanelContainerDesigner classe pour modifier l’apparence d’un contrôle dérivé de la Panel classe au moment du design. L’exemple fournit une légende par défaut pour le contrôle associé, si aucun n’a été défini.
// 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
Remarques
La FrameCaption propriété retourne la GroupingText propriété du contrôle associé Panel .