我目前动态创建两个TLabel和一个TEdit,命名为LblDesc + i,EdtAmount + i和LblUnit + i - 其中i是一个整数,每次添加这3个元素时我都会迭代一次。元素中的数据仅用于模拟目的。 我现在的问题是删除这三个对象。我试过免费和FreeAndNil,没有运气。 非常感谢任何帮助。
procedure TForm1.BtnAddClick(Sender: TObject);
begin
LblDesc := TLabel.Create(Self);
LblDesc.Caption := 'Item '+IntToStr(i);
LblDesc.Name := 'LblDesc'+IntToStr(i);
LblDesc.Left := 16;
LblDesc.Top := 30 + i*30;
LblDesc.Width := 100;
LblDesc.Height := 25;
LblDesc.Parent := Self;
EdtAmount := TEdit.Create(Self);
EdtAmount.Text := IntToStr(i);
EdtAmount.Name := 'EdtAmount'+IntToStr(i);
EdtAmount.Left := 105;
EdtAmount.Top := 27 + i*30;
EdtAmount.Width := 60;
EdtAmount.Height := 25;
EdtAmount.Parent := Self;
LblUnit := TLabel.Create(Self);
LblUnit.Caption := 'Kg';
LblUnit.Name := 'LblUnit'+IntToStr(i);
LblUnit.Left := 170;
LblUnit.Top := 30 + i*30;
LblUnit.Width := 50;
LblUnit.Height := 25;
LblUnit.Parent := Self;
i := i+1;
end;
procedure TForm1.BtnRemoveClick(Sender: TObject);
begin
//Delete
end;
答案 0 :(得分:4)
在过去,我遇到了与删除某些组件有关的问题,我已经解决了将父组件设置为nil
但从TControl
的析构函数开始不再是这种情况 - 如果叫 - 已经做好了工作。
只需将其释放即可删除该组件。
LblUnit.Free;
如果您需要按名称查找组件,请使用System.Classes.TComponent.FindComponent或迭代Components
列表。
for i := ComponentCount-1 downto 0 do begin
if Components[i].Name = 'LblUnit'+IntToStr(i) then begin
//TControl(Components[i]).Parent := nil; {uncomment if you have the same issue I've had}
Components[i].Free;
end;
. . .
end;
修改强>
如果用于组件名称构造i
的索引'LblUnit'+IntToStr(i)
不在[0..ComponentCount-1]
范围内,则必须相应地修改索引。
答案 1 :(得分:0)
要删除动态创建的组件,您必须具有对它的有效引用。
您可以组织自己的数组或列表以保留您的对象,或使用现有列表,例如 - Form.Components[]
,其中包含所有者为Form
的对象。
在第二种情况下,您必须按名称找到FindComponent
所需的对象,或者浏览Components[]
并搜索具有某些功能的组件(名称,类类型,标记等)
答案 2 :(得分:0)
最终工作的答案是:
procedure TForm1.BtnRemoveClick(Sender: TObject);
var
j: Integer;
begin
for j := ComponentCount-1 downto 0 do begin
if Components[j].Name = 'LblDesc'+IntToStr(i-1) then begin
TControl(Components[j]).Parent := nil;
Components[j].Free;
end;
end;
end;