ImageKey

返回或设置行的图标键值。

示例

Dim lvw As WinForm.ListView = e.Form.Controls("ListView1")
lvw
.Images.AddImage("China","China.Ico","China48.Ico") '增加代表中国的一对图标,图标键值为"China"
lvw
.Images.AddImage("USA","USA.Ico","USA48.Ico") ''增加代表美国的一对图标,图标键值为"USA"

Dim
r As  WinForm.ListViewRowlvw.Rows.Add() '增加一行
r
.Text = "中国" '指定行的标题
r
.ImageKey = "China" '指定行的图标键值

r
= lvw.Rows.Add() '再增加一行
r
.Text = "美国" '指定行的标题
r
.ImageKey = "USA" '指定行的图标键值

提示:图标文件应该事先复制到项目文件所在目录的Images或Attachments子目录中 ,否则添加图标的时候,必须明确指定键值。


本页地址:http://www.foxtable.com/webhelp/topics/2857.htm