TableLayoutPanel.Controls 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取包含在 TableLayoutPanel 内的控件的集合。
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
属性值
包含与当前 TableLayoutControlCollection 关联的控件的 TableLayoutPanel。
- 属性
示例
下面的代码示例枚举 中的所有 TableLayoutPanel子控件。
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
注解
属性 Controls 包含与表关联的所有控件,包括当前可能由于 GrowStyle、 ColumnCount或 RowCount 限制而无法显示的控件。