Control.Contains(Control) Methode

Definition

Ruft einen Wert ab, der angibt, ob das angegebene Steuerelement dem Steuerelement untergeordnet ist.

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

Parameter

ctl
Control

Der auszuwertende Control.

Gibt zurück

Boolean

true, wenn das angegebene Steuerelement dem Steuerelement untergeordnet ist, andernfalls false.

Beispiele

Im folgenden Codebeispiel wird sichergestellt, dass eine Label durch Aufrufen der BringToFront Methode sichtbar ist. In diesem Beispiel ist erforderlich, dass Sie über einen Form Panel Benannten panel1und einen Label benannten Namen label1verfügen.

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

Gilt für

Siehe auch