gpt4 book ai didi

C# ListView 图片图标大小

转载 作者:太空狗 更新时间:2023-10-30 00:02:48 24 4
gpt4 key购买 nike

默认情况下,C# 中 ListView 中的图标非常小(大概 16x16px)。我怎样才能增加这些图标的大小?

我尝试使 ImageList 中的源图像更大,也尝试使用 LargeImageList 属性,但无济于事。

我正在使用 C#、WinForms 和 .net 4.0。

最佳答案

诀窍在于修改 ImageList 的 ImageSize 属性(谁会想到)?

        listView1.View = View.LargeIcon;

ImageList iList = new ImageList();
iList.ImageSize = new Size(64, 64);
iList.ColorDepth = ColorDepth.Depth32Bit;

listView1.LargeImageList = iList;

作为奖励,请记住将 ListView 的 View 属性设置为 LargeIcon 并增加 ColorDepth(如果您愿意)。

关于C# ListView 图片图标大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30035814/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com