我找到了一些将图像加载到图片框的简单方法,但我找不到将图像加载到图片框背景的简单方法。
如果你知道比这更简单的例子......
var request = WebRequest.Create("http://www.example.com/image.jpg");
using (var response = request.GetResponse())
using (var stream = response.GetResponseStream())
{
pictureBox1.BackroundImage = Bitmap.FromStream(stream);
}
...请分享。
将图像从 url 加载到图片框的两种简单方法是...
pictureBox1.ImageLocation = "http://www.example.com/image.jpg";
pictureBox1.Load(url);
但我不能使用它们
我想使用BackroundImage而不是Image的原因是我想拉伸图像。