在设计期,怎么隐藏基类窗体继承下来的组件?如 ImageList等

在设计期,如何隐藏基类窗体继承下来的组件?如 ImageList等
TForm1   =   class(TForm)

TForm1   上放置了一个ImageList

TForm2   =   class(TForm1)

TForm2继承了TForm1后,窗体上也放了一个继承下来的ImageList,

现在想把ImageList在TForm2设计期间隐藏,但不删除,如何实现?

------解决方案--------------------
你把眼睛闭上就可以了。
------解决方案--------------------
ImageList.visible:=false;
------解决方案--------------------
在继承类的构造函数中 设置 ImageList.visible:=false;