void
PrintCtrlName(Control parent)
{
foreach
(Contrl ctrl
in
parent.Controls)
Print(ctrl.Name);
if
(ctrl.Controls.Count >0)
PrintCtrlName(ctrl);
}