- 浏览: 138610 次
- 性别:
文章分类
最新评论
Delphi ListView基本用法大全
//增加项或列(字段)
ListView1.Clear;
ListView1.Columns.Clear;
ListView1.Columns.Add;
ListView1.Columns.Add;
ListView1.Columns.Add;
ListView1.Columns.Items[0].Caption:='id';
ListView1.Columns.Items[1].Caption:='type';
ListView1.Columns.Items[2].Caption:='title';
ListView1.Columns.Items[2].Width:=300;
Listview1.ViewStyle:=vsreport;
Listview1.GridLines:=true; //注:此处代码也可以直接在可视化编辑器中完成,
也可写成以下这样
begin
with listview1 do
begin
Columns.Add;
Columns.Add;
Columns.Add;
ViewStyle:=vsreport;
GridLines:=true;
columns.items[0].caption:='进程名';
columns.items[1].caption:='进程ID';
columns.items[2].caption:='进程文件路径';
Columns.Items[0].Width:=100;
Columns.Items[1].Width:=100;
Columns.Items[2].Width:=150;
end
end;
//增加记录
with listview1.items.add do
begin
caption:='1212';
subitems.add('hh1');
subitems.add('hh2');
end;
//删除
listview1.items.delete(0);
//从数据库表里读取数据写入Listview
var
Titem:Tlistitem; //此处一定要预定义临时记录存储变量.
begin
ListView1.Items.Clear;
with adoquery1 do
begin
close;
sql.Clear;
sql.Add('select spmc,jg,sl from kcxs');
Open;
ListView1.Items.Clear;
while not eof do
begin
Titem:=ListView1.Items.add;
Titem.Caption:=FieldByName('spmc').Value;
Titem.SubItems.Add(FieldByName('sl').Value);
Titem.SubItems.Add(FieldByName('jg').Value);
next;
end;
//删除
ListView1.DeleteSelected;
//如何取得ListView中选中行的某一列的值
procedure TForm1.Button2Click(Sender: TObject);
begin
ShowMessage(ListView1.Selected.SubItems.Strings[1]); //返回选中行第三列中的值
end;
showMessage(listView1.Selected.Caption); //返回选中行第一列的值.
第1列的值: -->>> ListView1.Selected.Caption
第i列的值(i>1):-->>> ListView1.Selected.SubItems.Strings[i]
ListView1.Items.Item[1].SubItems.GetText); //取得listview某行某列的值
Edit2.Text := listview1.Items[i].SubItems.strings[0]; //读第i行第2列
返回选中行所有子列值.是以回车符分开的,你还要从中剥离出来你要的子列的值。
showMessage(ListView1.Selected.SubItems.GetText);
ListView 简单排序的实现
ListView 排序
怎样实现单击一下按升序,再单击一下按降序。
function CustomSortProc(Item1, Item2: TListItem; ColumnIndex: integer): integer; stdcall;
begin
if ColumnIndex = 0 then
Result := CompareText(Item1.Caption,Item2.Caption)
else
Result := CompareText(Item1.SubItems[ColumnIndex-1],Item2.SubItems[ColumnIndex-1])
end;
procedure TFrmSrvrMain.ListView1ColumnClick(Sender: TObject;
Column: TListColumn);
begin
ListView1.CustomSort(@CustomSortProc,Column.Index);
end;
===============================================================
//增加
i := ListView1.Items.Count;
with ListView1 do
begin
ListItem:=Items.Add;
ListItem.Caption:= IntToStr(i);
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(); //删除当前选中行
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;
//这是个通用的过程
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;
//此为调用过程,可以任意指定要移动的Item,下面是当前(Selected)Item
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);
// 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;
不过在Delphi6中,ListView多了一个ItemIndex属性,所以只要
ListView1.SetFocus;
ListView1.ItemIndex:=3;
就能设定焦点了。
Delphi的listview能实现交替颜色么?
procedure TForm1.ListView1CustomDrawItem(
Sender: TCustomListView; Item: TListItem; State: TCustomDrawState;
var DefaultDraw: Boolean);
var
i: integer;
begin
i:= (Sender as TListView).Items.IndexOf(Item);
if odd(i) then sender.Canvas.Brush.Color:= $02E0F0D7
else sender.Canvas.Brush.Color:= $02F0EED7;
Sender.Canvas.FillRect(Item.DisplayRect(drIcon));
end;
要想随时更改ListView 中某一行的字体颜色,要在ListView的 OnCustomDrawItem 的事件中书写相关的代码。例如 我想更改选中的某行字体的颜色,则需要在事件中写入下的代码:
if item.Index = strtoint(edit1.Text) then //该条件是用于判断是否符合更改字体颜色的行的条件。
Sender.Canvas.Font.Color := clred;
发表评论
-
Delphi中的接口和抽象类
2010-12-06 16:30 607接口:Interface Delphi中接口的关键字 ... -
Delphi中票据凭证的精确打印
2011-04-06 15:13 1015一、概述 在银行,税务,邮政等行业的实际工作中,经常涉及到在 ... -
Delphi编程中流的应用
2011-05-25 11:19 828一、流的概念 流简单说是建立在面向对象基础上的一种 ... -
Pascal与C的指针
2011-05-26 13:49 1059大家都认为,C语言 ... -
Delphi编程的一些资料1
2011-06-16 10:40 764手机 SMS PDU 格式参考手册 1.相关的GSM AT指 ... -
Delphi编程的一些资料2
2011-06-16 10:43 746算法步骤: 一、地址 ... -
Delphi编程的一些资料3
2011-06-16 10:46 816一、一般命令 AT+CGMI ... -
Delphi编程的一些资料4
2011-06-16 10:48 818七、追加服务命令 AT+CCFC 呼叫继续 ... -
Delphi编程的一些资料5
2011-06-16 10:53 801十三、SIM卡工具箱命令 AT+STSF ... -
短信文本模式下的解码方法
2011-06-16 10:57 823接收短信有两种编码格式: 1.中英文混合的为unicode 2 ... -
通过注册表获取当前所有串口号
2011-06-16 15:49 2737usesWindows, Messages, SysUtils ... -
Delphi 分隔GSMModem接收到的短信字符串
2011-06-20 10:37 1118Delphi 分隔GSMModem接收到的短信字符串 ... -
Delphi流的操作
2011-06-22 14:34 835Delphi流的操作 一、流的概念 流简单说是建立在面 ... -
Delphi、PChar和Char数组的比较
2011-06-22 16:14 1306Delphi、PChar和Char数组的 ... -
Delphi 判断数据库表是否存在
2011-06-26 12:54 1121//根据表名和一个数据库连接判断表是否存在 function ... -
Delphi2010 无效的类别字符串, ProgID: "ADOX.Catalog"问题
2012-07-18 09:56 2138程序中用ADOX创建的Access数据库,一直运行正常,其 ... -
Delphi 禁用TEdit右键菜单及复制粘贴
2012-07-19 11:24 1400Delphi 禁用TEdit右键菜单及复制粘贴简的单方法 ... -
Delphi TStrings取得Ini文件键值对
2012-07-20 07:37 1361Delphi TStrings取得Ini文件键值对的简单 ... -
Delphi 压缩Access数据库
2012-07-21 12:21 1677由于Access数据库在反复使用过程中会自动增大,Del ...
相关推荐
- 这种基本的实现可能不包括键盘操作的支持,例如使用箭头键或空格键选择项。为了完整实现,你需要处理`OnKeyDown`事件并根据按键行为调整选中状态。 - 考虑到用户体验,你可能希望在用户取消选择已选中的项时,...
可以通过`ListView1.Items.Add`方法添加新项,并使用`Item.Caption`和`Item.SubItems`属性设置项的文本。例如: ```delphi procedure TForm1.FormCreate(Sender: TObject); begin ListView1.Items.Add.Caption := ...
以上就是 Delphi 中 ListView 控件的基本使用方法,包括初始化、添加删除项目、处理选中项、排序以及其他一些实用的操作技巧。通过这些方法,开发者可以根据实际需求灵活地操作 ListView 控件,实现所需的功能。
i := ListView1.Items.Count; with ListView1 do begin ListItem:=Items.Add; ListItem.Caption:= IntToStr(i); ListItem.SubItems.Add('第 '+IntToStr(i)+' 行'); ListItem.SubItems.Add('第三列内容'); ...
首先,我们需要了解ListView的基本属性和样式。`vsIcon`是ListView的一种视图样式,它使得每个列表项显示为一个小图标,类似于Windows资源管理器。要启用图标拖动,我们需要设置ListView的`DragMode`属性为`...
首先,我们需要了解`ListView`的基本用法。在Delphi中,`TListView`组件用于创建一个可滚动的列表,每个项目通常由一个`TListItem`表示。在`Main.fmx`文件中,你会看到`TListView`对象的定义,包括其样式、布局、...
综上所述,"delphi listview双向排序"涉及了Delphi中ListView控件的事件处理、自定义排序逻辑以及利用内置的Sort方法。通过理解和应用这些知识点,你可以构建一个用户友好的界面,允许用户根据需要对ListView中的...
这个最简单的例子旨在展示ListView的基本用法,帮助开发者快速上手。 1. 创建项目: 首先,打开DELPHI xe5 IDE,新建一个FireMonkey移动应用程序项目。选择适当的平台,例如iOS,并添加一个新的Form。 2. 添加...
以上就是在Delphi7环境下,如何实现ListView的编辑和排序功能的基本步骤。在实际项目中,你可能还需要考虑更多的细节,比如错误处理、用户交互等。不过,有了这些基础,你应该能顺利地在你的应用程序中集成这些功能...
可以使用ListView的Items属性来添加、删除或修改项,或者使用BeginUpdate/EndUpdate方法来批量操作,提高性能。 6. 事件响应: 为了响应用户的交互,如点击项或选择项,我们需要设置ListView的OnItemClick或...
总之,Delphi XE10.2中的ListView控件是一个功能齐全、性能优秀的组件,它提供的各种特性和方法为开发者构建数据展示和用户交互丰富的应用提供了强大支持。通过学习和实践这个示例,你可以深入掌握ListView控件的...
在Delphi编程环境中,ListView控件是常用的组件之一,它提供了多种显示数据的方式,包括报告模式、图标模式、小图标...通过熟练掌握其基本用法和事件处理,你可以创建出功能丰富的用户界面,满足各种应用程序的需求。
本篇文章将深入讲解Delphi中的ListView及其核心特性,并通过实例来解析其用法。 首先,我们要理解ListView的基本结构。ListView由多个部分组成,包括头部(Header),项(Items)和子项(SubItems)。头部包含了列的...
如果是,使用PointToClient方法将屏幕坐标转换为ListView内部坐标,然后调用ListView的HitTest方法来确定被点击的项。 4. 设置Popup:在OnMouseDown事件处理程序中,根据HitTest的结果,设置PopupMenu的ActiveItem...
首先,我们需要了解ListView的基本结构。ListView通常由Adapter驱动,Adapter负责将数据转化为View显示在列表中。每个View(即ListView的一个条目)可以通过设置Checkable属性来支持多选功能。例如,我们可以使用...
首先,我们要了解ListView的基本结构。ListView控件由项(Items)组成,每一项可以有多个子项(SubItems),并且每个项都有自己的图像(Images)。在默认情况下,ListView控件的背景是单一颜色,但我们可以通过覆盖...
在Android中,我们可以使用Adapter(如BaseAdapter或CursorAdapter)来绑定数据源和ListView,同时处理图片的加载。 加载多幅图片的过程通常涉及以下几个步骤: 1. **创建ImageList**:在代码中,我们需要先创建一...
在Delphi中,ListView组件是常用的数据显示控件,它允许我们以列表形式展示各种信息,包括文本、图像等。在实际应用中,我们经常需要实现点击ListView表头时,根据所点击的列对数据进行升序或降序排序的功能。这个...