Partager via


Shape.GetContainerControl, méthode

Retourne le ContainerControl suivant d'une chaîne de contrôles parents d'un contrôle d'une ligne ou d'une forme.

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 : IContainerControl
IContainerControl qui représente le parent du contrôle.

Notes

Pour LineShape, OvalShape, et RectangleShape contrôles, le Parent retourne toujours un ShapeContainer objet. Le GetContainerControl méthode peut être utilisée pour obtenir le parent de la ShapeContainer objet.

Exemples

L'exemple suivant définit les BackColor de la Panel contrôle contenant un OvalShape contrôle. Cet exemple suppose que vous disposez d'un Panel contrôle nommé Panel1 et un OvalShape OvalShape1 contrôle 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)