将图像动态添加到 WPF 中的列表框

发布于 2024-10-08 04:28:02 字数 125 浏览 2 评论 0原文

我有一个 WPF 应用程序,它有一个垂直列表框,我想以编程方式向其中添加图像。我希望能够使用 FileSystemWatcher 来监视照片所在的目录,并且当添加新图像或删除图像时,列表框将更新应用程序中的图像。有谁知道如何做到这一点?

I have a WPF application that has a vertical listbox that I would like to programmaticly add images to. I want to be able to use a FileSystemWatcher to monitor the directory that the photos are in and when a new image is added or an image is deleted the list box will update the images in the application. Does anyone know how to accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

ペ泪落弦音 2024-10-15 04:28:02

非常粗略地说,您将 ListBox 的 ItemsSource 属性绑定到 ObservableCollection 图像。让您的观察程序进程在图像出现时将图像添加到集合中,并且数据绑定应导致 ListBox 随着支持集合的更改而更新。

此外:如何:创建并绑定到 ObservableCollection

这是一般概念。如果不了解您的代码,就无法获得比这更具体的信息。 :) 祝你好运!

Very roughly, you bind the ItemsSource property of the ListBox to an ObservableCollection of images. Have your watcher process add images to the collection as they appear, and databinding should cause the ListBox to be updated as the backing collection changes.

Further: How to: Create and Bind to an ObservableCollection

That's the general concept. Can't get much more specific than that without knowing anything about your code. :) Good luck!

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