我是这个领域的新人。我在Windows应用程序中工作,我创建了面板并在面板中添加了按钮。我想从数据库中检索图像并在按钮中设置为背景图像。
这是我的代码,
FileName = objDR["Photopath"].ToString();
byte[] data = Encoding.UTF8.GetBytes(FileName);
MemoryStream ms = new MemoryStream(data);
image = new System.Drawing.Bitmap(ms);
Buttons[i].BackgroundImage = image;
答案 0 :(得分:0)
最初将BackgroundImage属性设置为
OR
你可以编码:
button1.BackgroundImage = ((System.Drawing.Image)(Properties.Resources.Image));