我是想实现listbox的滚动条能够随我的内容往下滚动,怎样实现,谢谢
procedure TForm1.Timer1Timer(Sender: TObject);
begin
  ListBox1.Items.Append(DateTimetostr(now)+'  程序占用cpu资源:'+x);
  Timer1.Interval:=10000;
end;