正宗的方法:procedure TListItem.MakeVisible(PartialOK: Boolean);
在Form中放个按钮即可,粘贴以下程序段就可查看效果。
uses ...,conctrls;
procedure TForm1.Button1Click(Sender: TObject);
const
Names: array[0..5, 0..1] of string = (
('Rubble', 'Barney'),
('Michael', 'Johnson'),
('Bunny', 'Bugs'),
('Silver', 'HiHo'),
('Simpson', 'Bart'),
('Squirrel', 'Rockey')
);
var
I: Integer;
NewColumn: TListColumn;
ListItem: TListItem;
ListView: TListView;
begin
ListView := TListView.Create(Self);
with ListView do
begin
Parent := Self;
Align := altop;
ViewStyle := vsReport;
NewColumn := Columns.Add;
NewColumn.Caption := 'Last';
NewColumn := Columns.Add;
NewColumn.Caption := 'First';
for I := Low(Names) to High(Names)*20 do
begin
ListItem := Items.Add;
ListItem.Caption := Names[I mod 5][0];
ListItem.SubItems.Add(Names[I mod 5][1]);
listitem.MakeVisible (true);
//正宗的方法。
application.ProcessMessages ;
sleep(100);
end;
end;
end;
Esc 即 chr(27) 或要用 #27 表示。