Partager via


Shape.GetContainerControl, méthode

Retourne ContainerControl suivant dans une chaîne de contrôle Line ou Shape des contrôles parents.

Espace de noms :  Microsoft.VisualBasic.PowerPacks
Assembly :  Microsoft.VisualBasic.PowerPacks.Vs (dans Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntaxe

'Déclaration
Public Function GetContainerControl As IContainerControl
public IContainerControl GetContainerControl()
public:
IContainerControl^ GetContainerControl()
member GetContainerControl : unit -> IContainerControl 
public function GetContainerControl() : IContainerControl

Valeur de retour

Type : System.Windows.Forms.IContainerControl
IContainerControl qui représente le parent du contrôle.

Notes

Pour LineShape, OvalShape, et des contrôles d'RectangleShape, la propriété d'Parent retourne toujours un objet d'ShapeContainer.La méthode d'GetContainerControl peut être utilisée pour obtenir le parent de l'objet d'ShapeContainer.

Exemples

L'exemple suivant définit BackColor du contrôle d'Panel qui contient un contrôle d'OvalShape.Cet exemple requiert que vous avez un contrôle d'Panel nommé Panel1 et un contrôle d'OvalShape nommé OvalShape1 sur un formulaire.

Private Sub OvalShape1_Click() Handles OvalShape1.Click
    ' Declare a Control.
    Dim ctl As Control
    ' Find the container for the OvalShape.
    ctl = OvalShape1.GetContainerControl.ActiveControl.Parent
    ' Change the color of the container.
    ctl.BackColor = Color.Blue
End Sub
private void ovalShape1_Click(System.Object sender, System.EventArgs e)
{
    // Declare a Control.
    Control ctl;
    // Find the container for the OvalShape.
    ctl = ((Control)ovalShape1.GetContainerControl());
    // Change the color of the container.
    ctl.BackColor = Color.Blue;
}

Sécurité .NET Framework

Voir aussi

Référence

Shape Classe

Microsoft.VisualBasic.PowerPacks, espace de noms

Autres ressources

Comment : dessiner des lignes avec le contrôle LineShape (Visual Studio)

Comment : dessiner des formes avec les contrôles OvalShape et RectangleShape (Visual Studio)

Introduction aux contrôles Line et Shape (Visual Studio)