在C#中设置按钮的背景图像

时间:2013-07-11 20:51:28

标签: c# image button background

我想将图像设置为Windows窗体按钮的背景。

图像将添加到项目资源中。

我该怎么做?

3 个答案:

答案 0 :(得分:4)

只需设置Button的BackgroundImage属性即可。一个例子:

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

答案 1 :(得分:4)

您可以在加载应用程序时或在需要设置应用程序时使用此功能。

button.BackgroundImage = YourApplicationNamespace.Properties.Resources.yourImageHere;

答案 2 :(得分:3)

在Visual Studio中,您可以执行以下操作:

  1. 转到按钮的属性,然后单击BackgroundImage项。
  2. 点击“...”图标。
  3. 点击“本地资源”旁边的单选按钮。
  4. 点击“导入”,然后选择您想要的项目作为背景。
  5. 然后,点击“确定”。
  6. 或者,从代码中您可以执行此操作:

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