For Each c As WinForm.Control In e.Form.Controls
If Typeof c Is WinForm.Table Then
Dim t As WinForm.Table = c '使用特定类型的变量引用控件
Output.Show(t.Name)
End If
Next