我有一些图标应该显示在RowObject名称旁边的第一列中。 与不同类型的对象相关的不同图片。 这部分代码创建了包含我需要的对象的列。
this.descriptionTView = new BrightIdeasSoftware.TreeListView();
this.descriptionTView.CanExpandGetter = x =>
{
if ( ( x as ITreeViewItem ).Items != null )
{
return ( x as ITreeViewItem ).Items.Length > 0;
}
else
{
return false;
}
};
this.descriptionTView.ChildrenGetter = x => ( x as ITreeViewItem ).Items;
var column1 = new BrightIdeasSoftware.OLVColumn( "", "Part0" );
column1.AspectGetter = x => ( x as ITreeViewItem ).Part0;
column1.IsEditable = true;
var column2 = new BrightIdeasSoftware.OLVColumn( "", "Part1" );
column2.AspectGetter = x => ( x as ITreeViewItem ).Part1;
column1.IsEditable = true;
column2.IsEditable = true;
this.descriptionTView.Columns.Add( column1 );
this.descriptionTView.Columns.Add( column2 );
private List<ITreeViewItem> itemsList;
descriptionTView.Roots = itemsList;
答案 0 :(得分:2)
您必须创建并指定一个包含您要使用的图像的ImageList,例如
descriptionTView.SmallImageList = imageList1;
然后,您可以为所需的列实现ImageGetter
column1.ImageGetter = delegate(object rowObject) {
// decide depending on the rowObject which image to return
return 0;
};
您还可以在列表中返回图像的名称,而不是索引。
您可能需要设置
descriptionTView.OwnerDraw = true;
另一种方法是使用ImageAspectName
column1.ImageAspectName = "MyImage"; // Assuming your object has a property `public BitMap MyImage;`
答案 1 :(得分:0)
您需要向ImageList
添加TreeView
,之后您可以设置具有ImageKey
属性的节点。