Visual Basic 6:重置 ImageList 控件
以下问题...
在我的项目中,我必须重置(删除所有保存的图像和格式)绑定到 ListView 控件的 ImageList。首先,我使用“ListView1.Icons = Nothing”解除 ImageList 与 ListView 的绑定。然后我用“ImageList1.ListImages.Clear”清除我的 ImageList ...到目前为止没有问题。但是,如果我想“重新绑定”(在两个控件之间进行新的绑定)两个控件都带有“ListView1.Icons = ImageList1”,我会收到一条消息,例如“ImageList 必须在使用前初始化”...并且我不知道如何初始化一个图像列表。
有人可以帮助我吗?
问候, 克里斯
following issue ...
In my project I have to reset (delete all saved images and format) an ImageList that's bound to a ListView-control. At first I unbind the ImageList from the ListView with "ListView1.Icons = Nothing". Then I clear my ImageList with "ImageList1.ListImages.Clear" ... no problem up to now. But if I wanna "rebind" (make new binding between both controls) both controls with "ListView1.Icons = ImageList1" I receive an message like "ImageList must be initialized befor use" ... and I don't know how to initialize an ImageList.
Does somebody can help me?
Greetings,
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
set ListView1.Icons = ImageList1
之前,您需要使用ImageList.ListImages.Add(..)
添加至少1个图像You need to add at least 1 image with
ImageList.ListImages.Add(..)
before youset ListView1.Icons = ImageList1