gpt4 book ai didi

c# - 将 PictureBox 与用于 LoadAsync 的 url 字符串绑定(bind)

转载 作者:行者123 更新时间:2023-11-30 21:46:07 24 4
gpt4 key购买 nike

有没有办法将 PictureBox 绑定(bind)到字符串,以便当字符串发生变化时,它会使用字符串中的 url 调用 LoadAsync() 并加载图像?

目前这是我在自动生成的代码中所拥有的。

this.itemImagePictureBox.DataBindings.Add(new System.Windows.Forms.Binding("Image", this.MySource, "ItemImage", true));

我想要的是:

this.itemImagePictureBox.DataBindings.Add(new System.Windows.Forms.Binding("String", this.MySource, "ImageUrl", true));

MySource 有一个 url 字符串的属性,我也试图让它有一个 Image 的字段,但是一个 Bitmap 用于示例没有加载异步功能,所以我仍然无法使用 url 字符串。

最佳答案

确保 WaitOnLoad属性为 false(默认),从而启用异步图像加载,然后绑定(bind)到 ImageLocation属性:

this.itemImagePictureBox.WaitOnLoad = false;
this.itemImagePictureBox.DataBindings.Add(new System.Windows.Forms.Binding(
"ImageLocation", this.MySource, "ImageUrl", true));

关于c# - 将 PictureBox 与用于 LoadAsync 的 url 字符串绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39517846/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com