用VisualStudio编写C#程序,怎么点击按钮,把Form的背景图片换了

2024-11-03 04:14:09
推荐回答(1个)
回答1:

代码中添加引用
using System.Drawing;
双击 按钮 出现 button_click事件。写入{
Form名.BackgroundImage = Image.FromFile("另一张图片路径");
或者 this.BackgroundImage = Image.FromFile("e:\\abc.jpg");}
即可
--------------------------------------------------------------------------
抱歉,看不到你发的图
如果是在Resources中,需要这样改
this.BackgroundImage = global::命名空间.Properties.Resources.图片名;
--------------------------------------------------------------------------
global 命名空间标识符,代表当前程序集命名空间的最顶层。
其实可以这样写:
this.BackgroundImage = 命名空间.Properties.Resources.图片名;
举个例子:
系统中的 Console 类有个WriteLine()方法。
但是,假如你在程序中也定义了个Console 类
public class Console{} 这个类里面也有WriteLine()方法。
如果你要调用系统的,平时就是Console.WriteLine();
但是实际上这里调用出来是你写的这个类,并不是系统类
为了解决这种情况用 global::System.Console.WriteLine();
其实用global 就是为了可以精确定位你需要的类