设置面板的图像背景

时间:2016-03-06 19:10:49

标签: vb.net

我想将名为“Panel2”的面板的背景图像动态更改为应用程序文件夹中名为“2.png”的图像。 我的代码是:

img = Image.FromFile(Application.StartupPath & "\2.png)
Panel2.BackgroundImage = img

但它不起作用

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

您的代码应该是正确的。

我认为你的形象不存在,因为

 Application.StartupPath

是appdata中的临时路径,而不是项目的位置。

当你写“\ 2.png”时,他应该自动搜索你的项目文件夹:\ debug。