博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Delphi中ListView类的用法
阅读量:5290 次
发布时间:2019-06-14

本文共 3330 字,大约阅读时间需要 11 分钟。

分类: 3714人阅读 (0)
    ListView在delphi中算是使用得比较多吧,对于初学者,这个类并不是很好学,下面对网上的一些帖子进行整理。

//增加    i := ListView1.Items.Count;   //这里得到的是ListView中的行数,也叫项数(Items)    with ListView1 do    begin      ListItem:=Items.Add;   //这里相当于增加一行      ListItem.Caption:= IntToStr(i);   //ListView的第一列是Caption,这是固定的      ListItem.SubItems.Add('第 '+IntToStr(i)+' 行'); //这是每行第二列的内容      ListItem.SubItems.Add('第三列内容');    end;

//按标题删除    for i:=ListView1.Items.Count-1 downto 0 Do      if ListView1.Items[i].Caption = Edit1.Text then      begin        ListView1.Items.Item[i].Delete();   //删除第一列的值等于Edit1.Text的行      end;
//选中一行    if ListView1.Selected <> nil then    Edit1.Text := ListView1.Selected.Caption;
//    listview1.Items[Listview1.Items.Count -1].Selected := True; //    listview1.Items[Listview1.Items.Count -1].MakeVisible(True);   // 选择第一行(项)

procedure TForm1.Button2Click(Sender: TObject); begin    listview1.SetFocus;    listview1.Items[0].Selected := True; end;

// 选择最后一行(项) procedure TForm1.Button1Click(Sender: TObject);   begin    listview1.SetFocus;    listview1.Items[Listview1.Items.Count -1].Selected := True; end;  
//此为调用过程,可以任意指定要移动的Item,下面是当前(Selected)Item procedure ListViewItemMoveUpDown(lv : TListView; Item : TListItem; MoveUp, SetFocus : Boolean); var    DestItem : TListItem; begin    if (Item = nil) or       ((Item.Index - 1 < 0) and MoveUp) or       ((Item.Index + 1 >= lv.Items.Count) and (not MoveUp))      then Exit;    lv.Items.BeginUpdate;    try      if MoveUp then        DestItem := lv.Items.Insert(Item.Index - 1)      else        DestItem := lv.Items.Insert(Item.Index + 2);      DestItem.Assign(Item);      lv.Selected := DestItem;      Item.Free;    finally      lv.Items.EndUpdate;    end;    if SetFocus then lv.SetFocus;    DestItem.MakeVisible(False); end;
   ListViewItemMoveUpDown(ListView1, ListView1.Selected, True, True); //上移    ListViewItemMoveUpDown(ListView1, ListView1.Selected, False, True); //下移
TListView组件使用方法
引用CommCtrl单元
procedure TForm1.Button1Click(Sender: TObject); begin    ListView_DeleteColumn(MyListView.Handle, i);  //i是要删除的列的序号,从0开始 end;
用LISTVIEW显示表中的信息: procedure viewchange(listv:tlistview;table:tcustomadodataset;var i:integer);    begin      tlistview(listv).Items.BeginUpdate;    {listv:listview名}      try        tlistview(listv).Items.Clear;        with table do          {table or query名}        begin          active:=true;          first;          while not eof do          begin            listitem:=tlistview(listv).Items.add;            listitem.Caption:=trim(table.fields[i].asstring);//Trim去掉字符串前后的空格            listitem.ImageIndex:=8;            next;          end;        end;      finally        tlistview(listv).Items.EndUpdate;      end; end;
ListView使用中的一些要点。以下以一个两列的ListView为例。 //增加一行 with ListView1 do    begin      ListItem:=Items.Add;      ListItem.Caption:='第一列内容';      ListItem.SubItems.Add('第二列内容');    end; //清空ListView1 ListView1.Items.Clear; //得到当前被选中行的行的行号以及删除当前行 For i:=0 to ListView1.Items.Count-1 Do    If ListView1.Items[i].Selected then   //i=ListView1.Selected.index      begin        ListView1.Items.Delete(i);   //删除当前选中行      end;     当然,ListView有OnSelectItem事件,可以判断选择了哪行,用个全局变量把它赋值出来。 //读某行某列的操作

Edit1.Text := listview1.Items[i].Caption;   //读第i行第1列 Edit2.Text := listview1.Items[i].SubItems.strings[0];   //读第i行第2列 Edit3.Text := listview1.Items[i].SubItems.strings[1];   //读第i行第3列 以次类推,可以用循环读出整列。 //将焦点上移一行 For i:=0 to ListView1.Items.Count-1 Do    If (ListView1.Items[i].Selected) and (i>0) then      begin        ListView1.SetFocus;        ListView1.Items.Item[i-1].Selected := True;      end;

    在Delphi7中,ListView多了一个ItemIndex属性,所以只要: ListView1.SetFocus; ListView1.ItemIndex:=3; 就能设定焦点了。

转载于:https://www.cnblogs.com/xunxun/archive/2012/12/26/2834454.html

你可能感兴趣的文章
C语言栈的实现
查看>>
代码为什么需要重构
查看>>
TC SRM 593 DIV1 250
查看>>
SRM 628 DIV2
查看>>
2018-2019-2 20165314『网络对抗技术』Exp5:MSF基础应用
查看>>
统计单词,字符,和行
查看>>
《Akka应用模式:分布式应用程序设计实践指南》读书笔记8
查看>>
jQuery垂直滑动切换焦点图
查看>>
Python-S9-Day127-Scrapy爬虫框架2
查看>>
模运算
查看>>
python多线程的使用
查看>>
团队编程项目作业1-成员简介及分工
查看>>
使用Chrome(PC)调试移动设备上的网页
查看>>
UI基础--手写代码实现汤姆猫动画
查看>>
使用gitbash来链接mysql
查看>>
黑盒测试和百合测试的优缺点对比
查看>>
SecureCRT的使用方法和技巧(详细使用教程)
查看>>
右侧导航栏(动态添加数据到list)
查看>>
81、iOS本地推送与远程推送详解
查看>>
C#基础_注释和VS常用快捷键(一)
查看>>