-5

单击按钮时是否可以更改按钮的背景图像?我在 Windows 窗体应用程序上使用 C#。

4

3 回答 3

2

对的,这是可能的。只需BackgroundImage在其单击事件上设置按钮的属性。

于 2013-10-22T06:49:42.870 回答
0

尝试这个,

button1.BackgroundImage = Image.FromFile("ImageFilepath");
button1.BackgroundImageLayout = ImageLayout.Stretch;
于 2013-10-22T07:57:51.397 回答
-1

CSS3 的background-size属性应该适合你,即 background-size:coverbackground-size:100%

于 2013-10-22T07:23:37.800 回答