只有字符大小写上的区别
Delphi的编译器会在编译时先将所有的小写字母换成大写字母。
Parent的属性是干吗的,我一下还真说不上来。
字面含意是父组件。通过设置Parent:=...把组件加入到了父组件的组件列表中。
哪位大富翁帮帮忙再用文字解释一下吧。
下面抄一段代码给你看看吧:
procedure TControl.SetParent(AParent: TWinControl);
begin
if FParent <> AParent then
begin
if Parent = Self then
raise EInvalidOperation.Create(SControlParentSetToSelf);
if FParent <> nil then
FParent.RemoveControl(Self);
if AParent <> nil then
AParent.InsertControl(Self);
end;
end;
一般用Parent:=...
最后都调用了SetParent.