如何从表单或面板中获取所有组件并将 visible 属性设置为 false ?
///
/// loop all components, this is just an idea for the solution ,,,,
///
for i:= 0 to myPanel.ComponentsList do
begin
///
MyComponent.visible := false;
end;