Visual Basic 6:重置 ImageList 控件

发布于 2024-12-06 16:42:26 字数 351 浏览 0 评论 0原文

以下问题...

在我的项目中,我必须重置(删除所有保存的图像和格式)绑定到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心碎的声音 2024-12-13 16:42:26

set ListView1.Icons = ImageList1之前,您需要使用ImageList.ListImages.Add(..)添加至少1个图像

You need to add at least 1 image with ImageList.ListImages.Add(..) before you set ListView1.Icons = ImageList1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文