如何在ListView中显示大于256x256的图片?

问题描述 投票:0回答:0

ListView 连接到 ImageList 以显示图像。 ImageList 中图像的最大尺寸为 256x256。

我尝试在 ImageList 中添加更大的图像,但出现异常。在下面一行:

imageList.ImageSize = new Size(300, 300);

"Value of '300' is not valid for 'ImageSize.Width'. 'ImageSize.Width' should be between 1 and 256.\r\nParameter name: ImageSize"

有没有办法在ListView中显示更大的图片?例如 512x512 或更大?

c# winforms listview size imagelist
© www.soinside.com 2019 - 2024. All rights reserved.