如何在c#中设置按钮背景图像

本文关键字:按钮 背景 图像 设置 | 更新日期: 2023-09-27 18:29:32

我是这个领域的新手。我在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;

如何在c#中设置按钮背景图像

最初将BackgroundImage属性置于上

您可以编码:

button1.BackgroundImage = ((System.Drawing.Image)(Properties.Resources.Image));