码迷,mamicode.com
首页 > Windows程序 > 详细

delphi -----TListView的用法(转载)

时间:2017-08-30 10:04:44      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:apt   property   removes   items   listview   view   htm   dea   参数   

1.TListView方法:

技术分享procedure Clear; override; //从列表控件中删除所有的项目
技术分享

2.TListView属性:

技术分享property Column[Index: Integer]: TListColumn;//通过参数 Index 指明一列
技术分享property Columns: TListColumns;//记录列表中列的属性
技术分享property Items: TListItems;//包含列表中的所有项目Contains the list of items displayed by the list view. 
技术分享


2.1TListItems属性:

技术分享TListItems.Clear
技术分享procedure Clear;//从列表中移去所有的项目Removes all items from the list.
技术分享TListItems.BeginUpdate
技术分享procedure BeginUpdate;//更新列表直到EndUpdate方法被调用
技术分享TListItems.Add
技术分享function Add: TListItem;//创建一个新的项目并添加到列表中
技术分享
技术分享

不要忘记BeginUpdate和EndUpdate是成对出现的

2.1.1TListItem属性:

技术分享TListItem.Caption
技术分享property Caption: string;//指定列表中项目的标签Specifies the text that labels the item in the list.
技术分享 
技术分享
技术分享property SubItems: TStrings;//作为项目列表的子项目的任何字符串Contains any strings that appear as subitems to the list item.
技术分享
技术分享


2.1.1.1TStrings属性

技术分享function Add(const S: string): Integer; virtual;//添加字符串到列表的末尾Adds a string at the end of the list.
技术分享
技术分享

 

3.层次关系:

技术分享TListView:
技术分享           ->Columns:
技术分享           ->Items  : -->TListItems:   
技术分享                      -->Clear:                        
技术分享                      -->BeginUpdate:
技术分享                      -->Add:      --->TListItem:  ---->Caption:
技术分享                                                   ----> SubItems:-->TStrings:->Add
技术分享
TListView:代表整个列表,所有的行和列的属性方法的集合
->Columns:所有列
->Items  :所有行,TListItems类型
       -->TListItems: 所有行即条目的属性方法的集合 
       -->Clear: 移除所有的条目                      
       -->BeginUpdate: 更新所有的条目
       -->Add: 添加新的条目 ,TListItem类型  
            --->TListItem: 一行或者条目的属性方法的集合
            --->Caption:一个条目的名称
            ---> SubItems:一个条目的子条目,TStrings类型
                   -->TStrings:一个字符串的集合
                        ->Add:添加一个字符串

delphi -----TListView的用法(转载)

标签:apt   property   removes   items   listview   view   htm   dea   参数   

原文地址:http://www.cnblogs.com/michellexiaoqi/p/7451341.html

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