TableLayoutPanel.Controls Özellik
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.
içinde TableLayoutPanelbulunan denetim koleksiyonunu alır.
public:
property System::Windows::Forms::TableLayoutControlCollection ^ Controls { System::Windows::Forms::TableLayoutControlCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.TableLayoutControlCollection Controls { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Controls : System.Windows.Forms.TableLayoutControlCollection
Public ReadOnly Property Controls As TableLayoutControlCollection
Özellik Değeri
TableLayoutControlCollection Geçerli TableLayoutPanelile ilişkili denetimleri içeren.
- Öznitelikler
Örnekler
Aşağıdaki kod örneği içindeki TableLayoutPaneltüm alt denetimleri numaralandırır.
private void enumerateChildrenBtn_Click(
System.Object sender,
System.EventArgs e)
{
foreach ( Control c in this.TableLayoutPanel1.Controls )
{
Trace.WriteLine(c.ToString());
}
}
Private Sub enumerateChildrenBtn_Click( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles enumerateChildrenBtn.Click
Dim c As Control
For Each c In Me.TableLayoutPanel1.Controls
Trace.WriteLine(c.ToString())
Next
End Sub
Açıklamalar
Controls özelliği, , ColumnCountveya RowCount sınırlamaları nedeniyle GrowStylegörüntülenmeyen denetimler de dahil olmak üzere tabloyla ilişkili tüm denetimleri içerir.