C#ListView控件的⽤法
原⽂地址:()
⼀、ListView类
控件的使用1、常⽤的基本属性:
(1):设置是否⾏选择模式。(默认为false) 提⽰:只有在Details视图该属性才有意义。
(2):设置⾏和列之间是否显⽰⽹格线。(默认为false)提⽰:只有在Details视图该属性才有意义。
(3):设置是否可拖动列标头来对改变列的顺序。(默认为false)提⽰:只有在Details视图该属性才有意义。
(4):获取或设置项在控件中的显⽰⽅式,包括Details、LargeIcon、List、SmallIcon、Tile(默认为 LargeIcon)
(5):设置是否可以选择多个项。(默认为false)
(6):获取或设置列标头样式。
Clickable:列标头的作⽤类似于按钮,单击时可以执⾏操作(例如排序)。
NonClickable:列标头不响应⿏标单击。
None:不显⽰列标头。
(7):设置⽤户是否可以编辑控件中项的标签,对于Detail视图,只能编辑⾏第⼀列的内容。(默认为false)
(8):设置控件中各项的旁边是否显⽰复选框。(默认为false)
(9):⼤图标集。提⽰:只在LargeIcon视图使⽤。
(10):⼩图标集。提⽰:只有在SmallIcon视图使⽤。
(11):图像蒙板。这些图像蒙板可⽤作LargeImageList和SmallImageList图像的覆盖图,这些图像可⽤于指⽰项的应⽤程序定义的状态。(暂时不⼤懂)
(12):获取在控件中选定的项。
(13):获取控件中当前复选框选中的项。
(14):对列表视图的项进⾏排序。(默认为None)
Ascending:项按递增顺序排序。
Descending:项按递减顺序排序。
None:项未排序。
(15):设置当没有⾜够空间来显⽰所有项时是否显⽰滚动条。(默认为true)
(16):设置当⿏标指针悬停于项上时是否⾃动选择项。(默认为false)
(17):设置当⿏标指针经过项⽂本时,其外观是否变为超链接的形式。(默认为false)
(18):设置选定项在控件没焦点时是否仍突出显⽰。(默认为false)
(19):设置是否以分组⽅式显⽰项。(默认为false);
(20):设置分组的对象集合。
(21):获取或设置控件中的第⼀个可见项,可⽤于定位。(效果类似于⽅法)
2、常⽤⽅法:
(1):避免在调⽤⽅法之前描述控件。当插⼊⼤量数据时,可以有效地避免控件闪烁,并能⼤⼤提⾼速度。
(2):在⽅法挂起描述后,继续描述列表视图控件。(结束更新)
(3):列表视图滚动定位到指定索引项的选项⾏。(效果类似于属性)
(4):查以给定⽂本值开头的第⼀个 ListViewItem。
(5):按照指定的搜索⽅向,从给定点开始查下⼀个项。提⽰:只有在LargeIcon或SmallIcon视图才能使⽤该⽅法。
3、常⽤事件:
(1):当⽤户编辑完项的标签时发⽣,需要属性为true。
(2):当⽤户开始编辑项的标签时发⽣。
(3):当⽤户在列表视图控件中单击列标头时发⽣。
⼆、ListView的五种视图:
1、LargeIcon:每个项都显⽰为⼀个最⼤化图标,在它的下⾯有⼀个标签。(效果见下图)
2、SmallIcon:每个项都显⽰为⼀个⼩图标,在它的右边带⼀个标签。(效果见下图)
3、List:每个项都显⽰为⼀个⼩图标,在它的右边带⼀个标签。各项排列在列中,没有列标头。(效果见下图)
4、Details:可以显⽰任意的列,但只有第⼀列可以包含⼀个⼩图标和标签,其它的列项只能显⽰⽂字信息,有列表头。(效果见下图)
5、Tile:每个项都显⽰为⼀个完整⼤⼩的图标,在它的右边带项标签和⼦项信息。(只有Windows XP 和 Windows Server 2003 系列⽀持)
①Details视图:
this.listView1.SmallImageList = this.imageList1; //将listView的图标集与imageList1绑定
(1)列表头创建(记得,需要先创建列表头)
ColumnHeader ch= new ColumnHeader();
ch.Text = "列标题1" ; //设置列标题
ch.Width = 120; //设置列宽度
ch.TextAlign = HorizontalAlignment.Left; //设置列的对齐⽅式
this .listView1.Columns.Add(ch); //将列头添加到ListView控件。
或者
this .listView1.Columns.Add( "列标题1" , 120, HorizontalAlignment.Left); //⼀步添加
(2)添加数据项
this .listView1.BeginUpdate(); //数据更新,UI暂时挂起,直到EndUpdate绘制控件,可以有效避免闪烁并⼤⼤提⾼加载速度
for ( int i = 0; i < 10; i++) //添加10⾏数据
{
ListViewItem lvi = new ListViewItem();
lvi.ImageIndex = i; //通过与imageList绑定,显⽰imageList中第i项图标
lvi.Text = "subitem" + i;
lvi.SubItems.Add( "第2列,第" +i+ "⾏" );
lvi.SubItems.Add( "第3列,第" +i+ "⾏" );
this .listView1.Items.Add(lvi);
}
this .listView1.EndUpdate(); //结束数据处理,UI界⾯⼀次性绘制。
(3)显⽰项
foreach (ListViewItem item in this .listView1.Items)
{
for ( int i = 0; i < item.SubItems.Count; i++)
{
MessageBox.Show(item.SubItems[i].Text);
}
}
(4)移除某项
foreach (ListViewItem lvi in listView1.SelectedItems) //选中项遍历
{
listView1.Items.RemoveAt(lvi.Index); // 按索引移除
//listView1.Items.Remove(lvi); //按项移除
}
(5)⾏⾼设置(利⽤imageList实现)
ImageList imgList = new ImageList();
imgList.ImageSize = new Size(1, 20); // 设置⾏⾼ 20 //分别是宽和⾼
listView1.SmallImageList = imgList; //这⾥设置listView的SmallImageList ,⽤imgList将其撑⼤ (6)清空
this .listView1.Clear(); //从控件中移除所有项和列(包括列表头)。
this .listView1.Items.Clear(); //只移除所有的项。
运⾏效果:
②largeIcon视图:
this .listView1.View = View.LargeIcon;
this .listView1.LargeImageList = this .imageList2;
this .listView1.BeginUpdate();
for ( int i = 0; i < 10; i++)
{
ListViewItem lvi = new ListViewItem();
lvi.ImageIndex = i;
lvi.Text = "item" + i;
this .listView1.Items.Add(lvi);
}
this .listView1.EndUpdate();
运⾏效果:
③SmallIcon视图:
this .listView1.View = View.SmallIcon;
this .listView1.SmallImageList= this .imageList1; this .listView1.BeginUpdate();
for ( int i = 0; i < 10; i++)
{
ListViewItem lvi = new ListViewItem();
lvi.ImageIndex = i;
lvi.Text = "item" + i;
this .listView1.Items.Add(lvi);
}
this .listView1.EndUpdate();
运⾏效果:
④List视图:
this .listView1.View = View.List;
this .listView1.SmallImageList= this .imageList1; this .listView1.BeginUpdate();
for ( int i = 0; i < 10; i++)
{
ListViewItem lvi = new ListViewItem();
lvi.ImageIndex = i;
lvi.Text = "item" + i;
this .listView1.Items.Add(lvi);
}
this .listView1.EndUpdate();
运⾏效果:
三、其它应⽤
1、分组:
ListViewGroup man_lvg = new ListViewGroup(); //创建男⽣分组
man_lvg.Header = "男⽣" ; //设置组的标题。
//man_lvg.Name = "man"; //设置组的名称。
man_lvg.HeaderAlignment = HorizontalAlignment.Left; //设置组标题⽂本的对齐⽅式。(默认为Left)
ListViewGroup women_lvg = new ListViewGroup(); //创建⼥⽣分组
women_lvg.Header = "⼥⽣" ;
//women_lvg.Name = "women";
women_lvg.HeaderAlignment = HorizontalAlignment.Center; //组标题居中对齐
this .listView1.Groups.Add(man_lvg); //把男⽣分组添加到listview中
this .listView1.Groups.Add(women_lvg); //把男⽣分组添加到listview中
this .listView1.ShowGroups = true ; //记得要设置ShowGroups属性为true(默认是false),否则显⽰不出分组
for ( int i = 0; i < 5; i++)
{
ListViewItem lvi = new ListViewItem();
lvi.ImageIndex = i;
lvi.Text = "item" +i;
lvi.ForeColor = Color.Blue; //设置⾏颜⾊
lvi.SubItems.Add( "第2列,第" +i+ "⾏" );
lvi.SubItems.Add( "第3列,第" +i+ "⾏" );
man_lvg.Items.Add(lvi); //分组添加⼦项
// 或 lvi.Group = man_lvg; //分组添加⼦项
this .listView1.Items.Add(lvi);
}
运⾏效果:
2、查⽂本(只能查到匹配前缀的⽂本且只能出第⼀个符合的项):
ListViewItem foundItem= this .listView1.FindItemWithText( this .textBox1.Text, true ,0); //参数1:要查的⽂本;参数2:是否⼦项也要查;参数3:开始查位置
if (foundItem != null )
{
this .listView1.TopItem = foundItem; //定位到该项
foundItem.ForeColor = Color.Red;
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论