有沒有辦法將一個PictureBox綁定到一個字符串,這樣當字符串改變時,它會調用LoadAsync()
與字符串中的url並加載圖像?將一個PictureBox與LoadAsync的一個url的字符串綁定
目前這是我在自動生成的代碼。
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字符串。