2

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

图像被添加到项目的资源中。

我该怎么做呢?

4

3 回答 3

5

当你加载你的应用程序时,或者你想设置它时,你会使用它。

button.BackgroundImage = YourApplicationNamespace.Properties.Resources.yourImageHere;
于 2013-07-11T20:55:24.563 回答
3

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

button1.BackgroundImage = ((System.Drawing.Image)(Properties.Resources.Image));
于 2013-07-11T20:54:51.887 回答
2

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

  1. 转到按钮的属性并单击该BackgroundImage项目。
  2. 单击“...”图标。
  3. 单击“本地资源”旁边的单选按钮。
  4. 单击“导入”并选择您希望作为背景的项目。
  5. 然后,单击“确定”。

或者,您可以从代码中执行以下操作:

button1.BackgroundImage = ((System.Drawing.Image)(Properties.Resources.Image));
于 2013-07-11T20:58:39.893 回答