delphi -----TListView的用法
层次关系:
->Columns:
->Items : -->TListItems:
-->Clear:
-->BeginUpdate:
-->Add: --->TListItem: ---->Caption:
----> SubItems:-->TStrings:->Add
一、属性
1.ListView主要属性
(1)ViewStyle属性
ViewStyle属性用于选择数据项的4种显示方式,因此该属性有4个选项值:vsIcon大图标、vsSmallIcon小图标、vsList列表、vsReport详细列表
区别参考资料:http://www.cnblogs.com/del/archive/2009/01/04/1368187.html
vsReport:
1)可以像grid一样展示
2)如果要有线条..设gridLines = true
二、添加、修改、删除
实例:
添加
加载到列表
item := ListView1.Items.Add;//增加一行
item.Caption := cbb_inputs.Text;
item.SubItems.Add(cbb_VAL.Text);
item.SubItems.Add(edt_inputDev.Text);
item.SubItems.Add(edt_inputch.Text);
item.SubItems.Add(edt_CONSTANTS.Text);
最好加个BeginUpdate , EndUpdate如下
lv_Item.Items.BeginUpdate;
try
for j := 0 to ItemArr.Size-1 do
begin
Itemsnum:=ItemArr.items[j].Value;
ddevcondition:=JSON(['_id',Itemsnum]);
ddev:=FMongoWire.Get(devCol,ddevcondition);
li:=lv_Item.Items.Add;
li.Caption:=Itemsnum;
li.SubItems.Add(VarToStr(ddev['name']));//siType
end;
finally
lv_Item.Items.EndUpdate;
end;
修改
将列表数据传EDIT中
if ListView1.Selected=nil then raise Exception.Create('请选择要修改的数据!');
cbb_inputs.Text:=ListView1.Selected.Caption;
stype:= ListView1.Selected.SubItems.Strings[0];
cbb_VAL.Text:=stype;
edt_inputDev.Text:=stype;
if(stype='VALUE')then
begin
edt_inputDev.Text:=ListView1.Selected.SubItems.Strings[1];
edt_inputch.Text:=ListView1.Selected.SubItems.Strings[2];
edt_CONSTANTS.Text:='';
btn_dev.Enabled:=True;
btn_ch.Enabled:=True;
end
else if (stype='CONSTANTS') then
begin
edt_inputDev.Text:='';
edt_inputch.Text:='';
edt_CONSTANTS.Enabled:=true;
edt_CONSTANTS.Text:=ListView1.Selected.SubItems.Strings[3];
end;
加载到列表
ListView1.Selected.Caption:=cbb_inputs.Text;//选择的行
ListView1.Selected.SubItems.Strings[0]:=cbb_VAL.Text;
if(ListView1.Selected.SubItems.Strings[0]='VALUE') then
begin
ListView1.Selected.SubItems.Strings[1]:=edt_inputDev.Text;
ListView1.Selected.SubItems.Strings[2]:=edt_inputch.Text;
end
else if(ListView1.Selected.SubItems.Strings[0]='CONSTANTS') then
ListView1.Selected.SubItems.Strings[3]:=edt_CONSTANTS.Text;
删除
if listview1.Selected= nil then exit ;
ListView1.Selected.Delete;
判断行记录是否已存在
首先介绍一下TlistView中FindCaption的用法:
function FindCaption(StartIndex: Integer; Value: string; Partial, Inclusive, Wrap: Boolean): TListItem;
这个函数用于查找listview中caption为某个值的记录,返回值为这个记录对应的ListItem,如果不存在这个记录,则返回nil.
当caption的长度大于255时,即使listview中存在这条记录,该函数亦会返回nil,
if( ListView1.FindCaption(0, Trim(cbb_inputs.Text), True, True, True)=nil)then
begin
ListView1.Selected.Caption:=cbb_inputs.Text;
ListView1.Selected.SubItems.Strings[0]:=cbb_VAL.Text;
if(ListView1.Selected.SubItems.Strings[0]='VALUE') then
begin
ListView1.Selected.SubItems.Strings[1]:=edt_inputDev.Text;
ListView1.Selected.SubItems.Strings[2]:=edt_inputch.Text;
end
else if(ListView1.Selected.SubItems.Strings[0]='CONSTANTS') then
ListView1.Selected.SubItems.Strings[3]:=edt_CONSTANTS.Text;
end
else begin
ShowErrMsg('已存在【'''+Trim(cbb_inputs.Text)+''' 】');
Exit;
end;
修改时,判断行记录是否已存在
selectNum:=ListView1.Selected.index;//当前行的序号
scaption:= Trim(cbb_inputs.Text);
For i:=0 to ListView1.Items.Count-1 Do
begin
if(i<>selectNum)then
begin
if(scaption= ListView1.Items[i].Caption ) then
begin
ShowErrMsg('已存在输入量【'''+Trim(cbb_inputs.Text)+''' 】');
Exit
end;
end;
end;
判断某列值是否设置
For i:=0 to ListView1.Items.Count-1 Do
begin
if(listview1.Items[i].SubItems.strings[4]='√') then
begin
bzcb:=True;
Break;
end;
end;
if(bzcb=False)then
begin
ShowErrMsg('请设置主设备');
Exit;
已有个数: ListView1.Items.Count
delphi -----TListView的用法的更多相关文章
- (转载)Delphi TStringList的用法
Delphi TStringList的用法 TStrings是一个抽象类,在实际开发中,是除了基本类型外,应用得最多的. TStringList 常用方法与属性: var List: TStringL ...
- Delphi TStringList的用法
Delphi TStringList的用法 TStrings是一个抽象类,在实际开发中,是除了基本类型外,应用得最多的. TStringList 常用方法与属性: var List: TStringL ...
- Delphi Inputbox,InputQuery用法
Delphi :InputQuery,InputBox用法及区别 function InputQuery(const ACaption, APrompt: string; var Value: str ...
- Delphi XE4 TStringHelper用法详解
原文地址:Delphi XE4 TStringHelper用法详解作者:天下为公 Delphi XE4的TStringHelper,对操作字符串进一步带来更多的方法,估计XE5还能继续用到. Syst ...
- delphi FillChar的用法(转)
delphi FillChar的用法(转) (2012-12-24 15:12:06) 转载▼ 标签: it 分类: delphi7 FillChar的用法(delphi) Fillchar是Turb ...
- Delphi常用关键字用法详解
本文详细介绍了Delphi中常用的各个关键字名称及用法,供大家在编程过程中借鉴参考之用.详情如下: absolute: ? 1 2 3 4 5 6 7 8 9 10 //它使得你能够创建一个新变量, ...
- Delphi中Messagedlg用法
if MessageDlg('Welcome to my Delphi application. Exit now?', mtConfirmation, [mbYes, mbNo], 0) = mrY ...
- Delphi GDI+基本用法总结
GDI+以前只是听说过,还没怎么用过,这段时间用了用,觉得挺好用的.在这里总结一下.留个备忘. GDI+(Graphics Device Interface plus)是Windows XP中的一个子 ...
- Delphi ListView基本用法大全
//增加项或列(字段) ListView1.Clear; ListView1.Columns.Clear; ListView1.Columns.Add; ListView1.Columns.Add; ...
随机推荐
- 通过使用JanusGraph索引提高性能
翻译整理:纪玉奇 Extending JanusGraph Server JanusGraph支持两种类型的索引:graph index和vertex-centric index.graph inde ...
- Varnish 简介
Varnish是高性能开源的反向代理服务器和HTTP缓存服务器 Varnish的功能与Squid服务器相似,都可以用来做HTTP缓存 Squid是从硬盘读取缓存的数据,而Varnish把数据存放在内存 ...
- Markdown进阶指南
数学公式编辑 Mac OS下建议使用Daum Equation Editor,按照MathType那样写公式,自动生成TeX代码 行内公式:用$...$包住Tex代码 行间公式:用$$..$$包住Te ...
- cocos2dx 3.x simpleAudioEngine 长音效被众多短音效打断问题
假设先play长音效a,然后在a播放过程中反复执行:play短音效b,stop b,play b,... 则若a足够长,就会被b打断.而长音效被打断是最不可接受的. a之所以会被打断,推测原因是sim ...
- 点滴积累【JS】---JS小功能(JS实现动态添加运动属性)
效果: 思路: 首先遍历div挨个执行onmouseover事件,再设置获取非行间样式.然后编写setInterval计时器框架,框架内容是:将三个参数 div.div属性.div的目标点,分别获得, ...
- C1编译器的实现
总览 词法.语法分析 分析方案 词法 语法 符号表 类型系统 AST 语义检查 EIR代码生成器 MIPS代码生成器 寄存器分配 体系结构相关特性优化 使用说明 编译 运行 总览 C1语言编译器及流程 ...
- 数据库设计(三)11 important database designing rules which I follow
原文地址:https://www.codeproject.com/Articles/359654/important-database-designing-rules-which-I-fo 麻辣个
- R学习----数据类型
今天开始学习R语言了,没原因,就是想学 本人开发环境在ubuntu 16.04 LTS下 R命令提示符 终端直接输入R进入交互模式进行R学习.如下图 R脚本 # My first program in ...
- [转]wordpress安装插件的3种方式
WordPress插件安装方法有几种?WordPress是一种使用PHP语言开发的博客平台,有些用户不知道怎么安装WordPress插件和主题的,所以今天小编就为大家介绍几种WordPress插件安装 ...
- Iptables规则执行顺序详解
1.The first is the mangle table which is responsible for the alteration of quality of service bits ...