Public Shared Function GetAllControl(ByVal ctrl As Control, t As Type) As IEnumerable(Of Control)
Dim _ctrl = ctrl.Controls.Cast(Of Control)()
Return _ctrl.SelectMany(Function(x) GetAllControl(x, t)).Concat(_ctrl).Where(Function(y) y.GetType() = t)
End Function