可以';t在C#中的数据中继器控制中的picturebox中显示图像

本文关键字:控制 中继器 picturebox 显示 图像 显示图 数据 可以 | 更新日期: 2023-09-27 18:24:56

我无法在数据中继器控制的picturebox中显示图像。我的代码是:

cnn.Open();
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = new System.Data.DataSet();
da.Fill(ds);
bi.DataSource = ds.Tables[0];
textBox1.DataBindings.Add("Text",bi,"Emri");
textBox2.DataBindings.Add("Text", bi, "Mbiemri");
Byte[] bfoto = (Byte[])(ds.Tables[0].Rows[0]["Foto"]);
MemoryStream ms = new MemoryStream(bfoto);
Bitmap bFoto = new Bitmap(ms);
pictureBox1.DataBindings.Add("image", bi, "Foto", true);
dataRepeater1.DataSource = bi;

可以';t在C#中的数据中继器控制中的picturebox中显示图像

下面是如何从位图设置图像属性的示例。

PictureBox pictureBox1 = new PictureBox();
// your code
Bitmap bFoto = new Bitmap(ms);
pictureBox1.Image = bFoto;