0

我在将项目(带图像的字符串)添加到 ImageListBoxControl 时遇到了一些麻烦。我从资源中获得的图像;我已经将图像添加到 ImageList,但我不知道如何将其添加到 ImageListBoxControl,因为它需要 imageIndex 但我不知道如何获取它;有人可以帮我吗?

4

1 回答 1

0

索引是项目所在的位置(从 0 开始),所以假设它是列表中的第 3 个项目,则索引为 2(索引是 int btw,而不是字符串)。

要将其添加到您的 ImageListBoxControl 中,如果我是对的,您必须这样做:

System.Drawing.Image myImage = "Image location";
ImageListBoxControl.Images.Add(myImage);

注意:我以前从未使用过此控件。

于 2012-03-27T11:56:14.543 回答