Control.ControlCollection.Contains(Control) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Belirtilen denetimin koleksiyonun bir üyesi olup olmadığını belirler.
public:
bool Contains(System::Windows::Forms::Control ^ control);
public bool Contains (System.Windows.Forms.Control control);
public bool Contains (System.Windows.Forms.Control? control);
member this.Contains : System.Windows.Forms.Control -> bool
Public Function Contains (control As Control) As Boolean
Parametreler
Döndürülenler
true
, Control koleksiyonun bir üyesiyse; değilse, false
.
Örnekler
Aşağıdaki kod örneği, koleksiyonun bir üyesiyse türetilmiş sınıfın Panel öğesinden Control.ControlCollection öğesini kaldırırControl. Örnek, üzerinde bir Panel, ve en az RadioButton bir Buttondenetim Formoluşturmanızı gerektirir. Denetimler RadioButton denetimine Panel , denetim de Panel öğesine Formeklenir. Düğmeye tıklandığında adlı removeButton
radyo düğmesi öğesinden Control.ControlCollectionkaldırılır.
// Remove the RadioButton control if it exists.
private:
void removeButton_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
if ( panel1->Controls->Contains( removeButton ) )
{
panel1->Controls->Remove( removeButton );
}
}
// Remove the RadioButton control if it exists.
private void removeButton_Click(object sender, System.EventArgs e)
{
if(panel1.Controls.Contains(removeButton))
{
panel1.Controls.Remove(removeButton);
}
}
' Remove the RadioButton control if it exists.
Private Sub RemoveButton_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles RemoveButton.Click
If Panel1.Controls.Contains(RemoveButton) Then
Panel1.Controls.Remove(RemoveButton)
End If
End Sub
Açıklamalar
Bu yöntem, üzerinde işlem gerçekleştirmeye çalışmadan önce a'nın Control koleksiyonun bir üyesi olup olmadığını belirlemenizi Controlsağlar. öğesine eklendiğini veya hala koleksiyonun bir üyesi olduğunu Control onaylamak için bu yöntemi kullanabilirsiniz.