码迷,mamicode.com
首页 > 其他好文 > 详细

ListView

时间:2014-07-29 20:34:52      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   strong   io   for   

bubuko.com,布布扣
 
添加项目
procedure TForm1.Button1Click(Sender: TObject);
begin
  with listview1.Items do
  begin
     Add.Caption:=‘1111111‘;
     Add.Caption:=‘2111111‘;
     Add.Caption:=‘3111111‘;
  end;
end;
 
 
 
bubuko.com,布布扣
//添加 项目
procedure TForm1.Button3Click(Sender: TObject);
begin
  with ListView2.Items.Add do
  begin
    Caption:=‘0‘;
    SubItems.add(‘FileName1‘);
    SubItems.add(‘FileName2‘);
  end;
end;
 
 
bubuko.com,布布扣
//添加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;
 
 
 
 
 
bubuko.com,布布扣 
添加头
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;
 
 
bubuko.com,布布扣
//判断是否选中
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;
 
 




ListView,布布扣,bubuko.com

ListView

标签:style   blog   http   color   os   strong   io   for   

原文地址:http://www.cnblogs.com/xe2011/p/3875844.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!