如何更改组标题中显示的图像大小?
我使用的图像是位图,大于16x16。然而它们以16x16显示。
答案 0 :(得分:0)
所以我发现可以通过访问ImageList.ImageSize
来设置大小。在将图片列表添加到ObjectListView.GroupImageList
之前,请确保在图片列表中设置该属性。
示例:
ImageList imgList = new ImageList();
imgList.ImageSize = new Size(x, y);
//Add [key/img] to the list.
this.objectListView.GroupImageList = imgList;
出于某种原因,您无法直接设置objectListView.GroupImageList.ImageSize
,它根本无法显示图像。
我没有足够的经验来理解为什么这是不可能的。