很奇怪的问题。。。。?(100分)

  • 主题发起人 主题发起人 ncyht
  • 开始时间 开始时间
N

ncyht

Unregistered / Unconfirmed
GUEST, unregistred user!
为什么我用application.compentcount不管我放多少个控件他的数字总是2.....?
 
那个是application的元件。
Form上的元件数直接使用ComponentCount或者Self.ComponentCount
 
先看看compentcount表示的是什么意思:
Indicates the number of components owned by the component.
只有拥有者为Application的才能在ComponentCount中体现出来
比如这样写TButton.Create(Application)
 
请问一句

frmAbout := TfrmAbout.Create(Application);



Application.CreateForm(TfrmAbout, frmAbout);

有区别吗?仅仅是写法上的不同吗?
 
后退
顶部