首页 > 代码库 > ListView
ListView
添加项目
procedure TForm1.Button1Click(Sender: TObject);
begin
with listview1.Items do
begin
Add.Caption:=‘1111111‘;
Add.Caption:=‘2111111‘;
Add.Caption:=‘3111111‘;
end;
end; //添加 项目procedure TForm1.Button3Click(Sender: TObject);
begin
with ListView2.Items.Add do
begin
Caption:=‘0‘;
SubItems.add(‘FileName1‘);
SubItems.add(‘FileName2‘);
end;
end;
//添加listbox里面的项目procedure TForm1.Button1Click(Sender: TObject);
var
i:Integer;
begin
for i := 0 to ListBox1.Items.Count-1 do
begin
listview1.Items.add.Caption:=ListBox1.Items[i];
end;
end;
添加头procedure TForm1.Button1Click(Sender: TObject);
begin
with ListView1 do
begin
Columns.Add.Caption:=‘ID‘;
Columns.Add.Caption:=‘FileName‘;
Columns.Add.Caption:=‘Count‘;
Columns[0].Width:=50;
Columns[1].Width:=100;
Columns[2].Width:=200;
end;
end;
//判断是否选中 procedure TForm1.ListView1ContextPopup(Sender: TObject; MousePos: TPoint; var Handled: Boolean);begin if ListView1.Selected = nil then begin a1.Enabled:=False; end else a1.Enabled:=True;end;
来自为知笔记(Wiz)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。