Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
TImageList 中可以存储多少位图有限制吗?
限制是指它可以容纳的位图数量,或者图像列表的内存大小。
谢谢。
在内部,图像列表由 Windows 实现,以将所有图像存储在一个大位图中。您的显示设备驱动程序可能具有最大位图大小,这限制了您可以放入图像列表中的图像数量。幸运的是,自 Windows Vista 以来,此限制已大大提高。无论如何,您会发现该限制取决于设备。
AFAIK 不,但从技术上讲,它是 2GB,因为索引的类型(实际上是 LongInt,Integer,但 Integer 无论如何都映射到 LongInt)。