Control.Contains(Control) Méthode

Définition

Récupère une valeur indiquant si le contrôle spécifié est un enfant du contrôle.

public:
 bool Contains(System::Windows::Forms::Control ^ ctl);
public bool Contains (System.Windows.Forms.Control ctl);
public bool Contains (System.Windows.Forms.Control? ctl);
member this.Contains : System.Windows.Forms.Control -> bool
Public Function Contains (ctl As Control) As Boolean

Paramètres

ctl
Control

Control à évaluer.

Retours

true si le contrôle spécifié est un enfant du contrôle ; sinon, false.

Exemples

L’exemple de code suivant garantit qu’un Label est visible en appelant sa BringToFront méthode. Cet exemple nécessite que vous ayez un Form avec un Panel nommé panel1et un Label nommé label1.

private:
   void MakeLabelVisible()
   {
      
      /* If the panel contains label1, bring it
         * to the front to make sure it is visible. */
      if ( panel1->Contains( label1 ) )
      {
         label1->BringToFront();
      }
   }
private void MakeLabelVisible()
{
   /* If the panel contains label1, bring it 
   * to the front to make sure it is visible. */
   if(panel1.Contains(label1))
   {
      label1.BringToFront();
   }
}
Private Sub MakeLabelVisible()
   ' If the panel contains label1, bring it 
   ' to the front to make sure it is visible. 
   If panel1.Contains(label1) Then
      label1.BringToFront()
   End If
End Sub

S’applique à

Voir aussi