下面的代码很好地将一个新字符串添加到 ListBox 的末尾
procedure TForm6.AddItem(s: string);
var
l : TListBoxItem;
OldHeight : Single;
begin
l := TListBoxItem.Create(Self);
l.Text := s;
OldHeight := l.Height;
l.Height := 0;
l.Parent := ListBox1;
l.Opacity := 0;
l.AnimateFloat('height', OldHeight, 0.5);
l.AnimateFloat('Opacity', 1, 0.5);
end;
该项目展开并淡入。但是我希望能够将字符串添加到 ListBox 中的任意位置 - 实际上是在当前 ItemIndex 处。有谁知道如何做到这一点?