首页 > 代码库 > Delphi ControlCount和ComponentCount的区别

Delphi ControlCount和ComponentCount的区别

ComponentCount指打开的窗体所拥有的控件个数,包含所有子组件、孙组件(子组件内的子组件)如上图,Form1的ComponentCount是13,而Panel1的ComponentCount为0ControlCount指有多少个控件将自己做为父容器。只向下统计到子组件,而不包含孙组件如上图,Form1的ControlCount是2(Panel1、Memo1),而Panel1的ControlCount为9(Button1、7个Edit、1个Panel2(不含Edit8、Edit9))

以下是借用的万一老师的图,更形象:

  

Delphi ControlCount和ComponentCount的区别