我想将图像设置为 Windows 窗体按钮的背景。
图像被添加到项目的资源中。
我该怎么做呢?
当你加载你的应用程序时,或者你想设置它时,你会使用它。
button.BackgroundImage = YourApplicationNamespace.Properties.Resources.yourImageHere;
只需设置 Button 的BackgroundImage属性。一个例子:
button1.BackgroundImage = ((System.Drawing.Image)(Properties.Resources.Image));
在 Visual Studio 中,您可以执行以下操作:
BackgroundImage
项目。 或者,您可以从代码中执行以下操作:
button1.BackgroundImage = ((System.Drawing.Image)(Properties.Resources.Image));